Square

Utility templates to manipulate Quantity types.

template Square (
Q
) if (
isQuantity!Q
) {}

Members

Aliases

Square
alias Square = typeof(Q.init * Q.init)
Undocumented in source.

Examples

import quantities.si;

static assert(is(Inverse!Time == Frequency));
static assert(is(Product!(Power, Time) == Energy));
static assert(is(Quotient!(Length, Time) == Speed));
static assert(is(Square!Length == Area));
static assert(is(Cubic!Length == Volume));
static assert(AreConsistent!(Product!(Inverse!Time, Length), Speed));

Meta