diff --git a/STL_Extension/doc/STL_Extension/Concepts/Index.h b/STL_Extension/doc/STL_Extension/Concepts/Index.h index af3c09cb7e5..d30cd28b8b1 100644 --- a/STL_Extension/doc/STL_Extension/Concepts/Index.h +++ b/STL_Extension/doc/STL_Extension/Concepts/Index.h @@ -2,7 +2,7 @@ \ingroup PkgStlExtensionConcepts \cgalConcept -The concept `Index` is a refinement of `Descriptor` which must be convertible from and to `size_t`, and must be incrementable and decrementable. +The concept `Index` is a refinement of `Descriptor` which must be convertible from and to `std::size_t`, and must be incrementable and decrementable. \cgalRefines `Descriptor` @@ -13,18 +13,18 @@ The concept `Index` is a refinement of `Descriptor` which must be convertible fr
`I`
Object of type Index.
-
`n`
Object of type size_t.
+
`n`
Object of type `std::size_t`.
\cgalHeading{Valid Expressions} Expression | Returns | Description --------------------------------------- | ---------------------------------------------------------------------------- | ----------- -`Index I(n)` | - | Creates an index `I` from a `size_t`. -`(size_t)I` | `size_t` | Converts `I` into a `size_t`. -`++I` | `Index&` | Pre-increment s`I`. +`Index I(n)` | - | Creates an index `I` from a `std::size_t`. +`(std::size_t)I` | `std::size_t` | Converts `I` into a `std::size_t`. +`++I` | `Index&` | Pre-increments `I`. `I++` | `Index` | Post-increments `I`. -`--I` | `Index&` | Pre-decrements`I`. +`--I` | `Index&` | Pre-decrements `I`. `I--` | `Index` | Post-decrements `I`. */