[#mp_units-RepresentationOf] = xref:mp_units.adoc[mp_units]::RepresentationOf :relfileprefix: ../ :mrdocs: == Synopsis Declared in `<mp‐units/framework/representation_concepts.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename T, auto V> concept RepresentationOf = (QuantitySpec<MP_UNITS_REMOVE_CONST(decltype(V))> && ((detail::QuantityKindSpec<MP_UNITS_REMOVE_CONST(decltype(V))> && detail::SomeRepresentation<T>) || (detail::RepresentationOfOrder<T, detail::order_of(get_character(V))> && detail::RepresentationOfField<T, detail::field_of(get_character(V))>))) || detail::RepresentationOfCharacter<T, V>; ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#