Store

Creates a new quantity type where the payload is stored as another numeric type.

template Store (
Q
N
) if (
isQuantity!Q &&
isNumberLike!N
) {}

Members

Aliases

Store
alias Store = Quantity!(N, Q.dimensions)
Undocumented in source.

Examples

import quantities.si : Time;
alias TimeF = Store!(Time, float);

Meta