From 1585f96befcb4fdf86f99bb8e995237d70a80a57 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Mon, 10 Jul 2023 16:55:44 +0200 Subject: [PATCH] docs: "Basic Concepts" TOC refactored --- .../users_guide/framework_basics/basic_concepts.md | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/docs/users_guide/framework_basics/basic_concepts.md b/docs/users_guide/framework_basics/basic_concepts.md index ce49605d..a99eae61 100644 --- a/docs/users_guide/framework_basics/basic_concepts.md +++ b/docs/users_guide/framework_basics/basic_concepts.md @@ -316,12 +316,10 @@ class template. - the type of `V` satisfies [`PointOrigin`](#pointorigin) concept and the quantity point's [absolute point origin](../../../appendix/glossary/#absolute-point-origin) is convertible to `V`. -## Interoperability concepts +## `QuantityLike` -### `QuantityLike` - -`QuantityLike` concept is satisfied by a type `T` for which an instantiation of `quantity_like_traits` -type trait yields a valid type that provides: +`QuantityLike` concept provides interoperability with other libraries and is satisfied by a type `T` +for which an instantiation of `quantity_like_traits` type trait yields a valid type that provides: - static member `reference` that matches the [`Reference`](#reference) concept - `rep` type that matches [`RepresentationOf`](#representationof) concept with the character provided @@ -341,10 +339,10 @@ type trait yields a valid type that provides: }; ``` -### `QuantityPointLike` +## `QuantityPointLike` -`QuantityPointLike` concept is satisfied by a type `T` for which an instantiation of -`quantity_point_like_traits` type trait yields a valid type that provides: +`QuantityPointLike` concept provides interoperability with other libraries and is satisfied by a type `T` +for which an instantiation of `quantity_point_like_traits` type trait yields a valid type that provides: - static member `reference` that matches the [`Reference`](#reference) concept - static member `point_origin` that matches the [`PointOrigin`](#pointorigin) concept