Home
last modified time | relevance | path

Searched refs:stableInsert (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/container/
H A Drbtree.d1125 size_t stableInsert(Stuff)(Stuff stuff) if (isImplicitlyConvertible!(Stuff, Elem))
1146 …size_t stableInsert(Stuff)(Stuff stuff) if (isInputRange!Stuff && isImplicitlyConvertible!(Element…
1169 alias insert = stableInsert;
1177 assert(ts.stableInsert(cast(Elem[])[7, 8, 6, 9, 10, 8]) == 6);
1179 assert(ts.stableInsert(cast(Elem) 11) == 1 && ts.length == 14);
1180 assert(ts.stableInsert(cast(Elem) 7) == 1 && ts.length == 15);
1191 assert(ts.stableInsert(elems) == 5);
1193 assert(ts.stableInsert(cast(Elem) 11) == 1 && ts.length == 11);
1194 assert(ts.stableInsert(cast(Elem) 7) == 0 && ts.length == 11);
1729 stableInsert(elems); in this()
[all …]
H A Dpackage.d920 size_t stableInsert(Stuff)(Stuff stuff) in TotalContainer()
H A Dslist.d379 alias stableInsert = insert; in SList() local
H A Ddlist.d458 alias stableInsert = insert; in DList() local
H A Darray.d1984 alias stableInsert = insertBack; variable
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/container/
H A Drbtree.d1264 size_t stableInsert(Stuff)(Stuff stuff) if (isImplicitlyConvertible!(Stuff, Elem))
1285 size_t stableInsert(Stuff)(scope Stuff stuff)
1309 alias insert = stableInsert;
1317 assert(ts.stableInsert(cast(Elem[])[7, 8, 6, 9, 10, 8]) == 6);
1319 assert(ts.stableInsert(cast(Elem) 11) == 1 && ts.length == 14);
1320 assert(ts.stableInsert(cast(Elem) 7) == 1 && ts.length == 15);
1331 assert(ts.stableInsert(elems) == 5);
1333 assert(ts.stableInsert(cast(Elem) 11) == 1 && ts.length == 11);
1334 assert(ts.stableInsert(cast(Elem) 7) == 0 && ts.length == 11);
1870 stableInsert(elems);
[all …]
H A Dpackage.d915 size_t stableInsert(Stuff)(Stuff stuff) in TotalContainer()
H A Dslist.d416 alias stableInsert = insert; variable
H A Ddlist.d464 alias stableInsert = insert;
H A Darray.d2272 alias stableInsert = insertBack;