Searched refs:stableInsert (Results 1 – 10 of 10) sorted by relevance
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/container/ |
H A D | rbtree.d | 1125 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 D | package.d | 920 size_t stableInsert(Stuff)(Stuff stuff) in TotalContainer()
|
H A D | slist.d | 379 alias stableInsert = insert; in SList() local
|
H A D | dlist.d | 458 alias stableInsert = insert; in DList() local
|
H A D | array.d | 1984 alias stableInsert = insertBack; variable
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/container/ |
H A D | rbtree.d | 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); [all …]
|
H A D | package.d | 915 size_t stableInsert(Stuff)(Stuff stuff) in TotalContainer()
|
H A D | slist.d | 416 alias stableInsert = insert; variable
|
H A D | dlist.d | 464 alias stableInsert = insert;
|
H A D | array.d | 2272 alias stableInsert = insertBack;
|