diff --git a/std/algorithm/sorting.d b/std/algorithm/sorting.d index e5f478496..9dc4023e5 100644 --- a/std/algorithm/sorting.d +++ b/std/algorithm/sorting.d @@ -19,6 +19,10 @@ $(T2 isPartitioned, afterwards.) $(T2 isSorted, $(D isSorted([1, 1, 2, 3])) returns $(D true).) +$(T2 ordered, + $(D ordered(1, 1, 2, 3)) returns $(D true).) +$(T2 strictlyOrdered, + $(D strictlyOrdered(1, 1, 2, 3)) returns $(D false).) $(T2 makeIndex, Creates a separate index for a range.) $(T2 multiSort,