2020-03-09 18:55:41 +01:00
|
|
|
Concepts
|
|
|
|
|
========
|
|
|
|
|
|
|
|
|
|
.. namespace:: units
|
|
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
2020-03-19 14:44:56 +01:00
|
|
|
All names defined in this chapter reside in the :any:`units` namespace unless
|
|
|
|
|
specified otherwise.
|
2020-03-09 18:55:41 +01:00
|
|
|
|
2020-03-19 14:44:56 +01:00
|
|
|
.. concept:: template<typename T> PrefixFamily
|
2020-03-09 18:55:41 +01:00
|
|
|
|
2020-03-19 14:44:56 +01:00
|
|
|
A concept matching a prefix family. Satisfied by all types derived from :class:`prefix_family`.
|
2020-03-09 18:55:41 +01:00
|
|
|
|
|
|
|
|
.. concept:: template<typename T> Prefix
|
|
|
|
|
|
2020-03-19 14:44:56 +01:00
|
|
|
A concept matching a symbol prefix. Satisfied by all instantiations of :class:`prefix`.
|
2020-03-09 18:55:41 +01:00
|
|
|
|
|
|
|
|
.. concept:: template<typename T> Ratio
|
|
|
|
|
|
2020-03-19 14:44:56 +01:00
|
|
|
A concept matching a ratio. Satisfied by all instantiations of :class:`ratio`.
|
2020-03-09 18:55:41 +01:00
|
|
|
|
|
|
|
|
.. concept:: template<typename R> UnitRatio
|
|
|
|
|
|
2020-03-19 14:44:56 +01:00
|
|
|
A concept matching unit's ratio. Satisfied by all types that satisfy :expr:`Ratio<R>` and
|
|
|
|
|
for which :expr:`R::num > 0` and :expr:`R::den > 0`.
|
2020-03-09 18:55:41 +01:00
|
|
|
|
|
|
|
|
.. concept:: template<typename T> BaseDimension
|
|
|
|
|
|
2020-03-19 14:44:56 +01:00
|
|
|
A concept matching all base dimensions in the library. Satisfied by all dimension types
|
|
|
|
|
derived from the instantiation of :class:`base_dimension`.
|
2020-03-09 18:55:41 +01:00
|
|
|
|
|
|
|
|
.. concept:: template<typename T> Exponent
|
|
|
|
|
|
2020-03-19 14:44:56 +01:00
|
|
|
A concept matching dimension's exponents. Satisfied by all instantiations of :class:`exp`.
|
2020-03-09 18:55:41 +01:00
|
|
|
|
|
|
|
|
.. concept:: template<typename T> DerivedDimension
|
|
|
|
|
|
2020-03-19 14:44:56 +01:00
|
|
|
A concept matching all derived dimensions in the library. Satisfied by all dimension
|
|
|
|
|
types derived from the instantiation of :class:`detail::derived_dimension_base`.
|
2020-03-09 18:55:41 +01:00
|
|
|
|
|
|
|
|
.. concept:: template<typename T> Dimension
|
|
|
|
|
|
2020-03-19 14:44:56 +01:00
|
|
|
A concept matching all dimensions in the library. Satisfied by all dimension types for
|
|
|
|
|
which either :expr:`BaseDimension<T>` or :expr:`DerivedDimension<T>` is ``true``.
|
2020-03-09 18:55:41 +01:00
|
|
|
|
|
|
|
|
.. concept:: template<typename T> Unit
|
|
|
|
|
|
2020-03-19 14:44:56 +01:00
|
|
|
A concept matching all unit types in the library. Satisfied by all unit types derived
|
|
|
|
|
from the instantiation of :class:`scaled_unit`.
|
2020-03-09 18:55:41 +01:00
|
|
|
|
|
|
|
|
.. concept:: template<typename U, typename D> UnitOf
|
|
|
|
|
|
2020-03-19 14:44:56 +01:00
|
|
|
A concept matching only units of a specified dimension. Satisfied by all unit types that
|
|
|
|
|
satisfy :expr:`Unit<U>`, :expr:`Dimension<D>`, and for which :expr:`U::reference` and
|
|
|
|
|
:expr:`dimension_unit<D>::reference` denote the same unit type.
|
|
|
|
|
|
|
|
|
|
:tparam U: Type to verify against concept constraints.
|
|
|
|
|
:tparam D: Dimension type to use for verification.
|
2020-03-09 18:55:41 +01:00
|
|
|
|
|
|
|
|
.. concept:: template<typename T> Quantity
|
|
|
|
|
|
2020-03-19 14:44:56 +01:00
|
|
|
A concept matching all quantities in the library. Satisfied by all instantiations of :class:`quantity`.
|
2020-03-09 18:55:41 +01:00
|
|
|
|
|
|
|
|
.. concept:: template<typename T> WrappedQuantity
|
|
|
|
|
|
2020-03-19 14:44:56 +01:00
|
|
|
A concept matching types that wrap quantity objects. Satisfied by all wrapper types that
|
|
|
|
|
satisfy :expr:`Quantity<typename T::value_type>` recursively
|
|
|
|
|
(i.e. :expr:`std::optional<si::length<si::metre>>`).
|
2020-03-09 18:55:41 +01:00
|
|
|
|
|
|
|
|
.. concept:: template<typename T> Scalar
|
|
|
|
|
|
2020-03-19 14:44:56 +01:00
|
|
|
A concept matching non-Quantity types. Satisfied by types that satisfy :expr:`(!Quantity<T>) && (!WrappedQuantity<T>) && std::regular<T>`.
|