Lines Matching refs:stableInsert
1264 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);
1879 stableInsert(stuff);