Add missing cheatsheet links for ordered and strictlyOrdered.

This commit is contained in:
H. S. Teoh 2015-08-19 22:21:20 -07:00
parent 8bf9d9fce4
commit 03eac95230

View file

@ -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,