Home
last modified time | relevance | path

Searched refs:inputRange (Results 1 – 3 of 3) sorted by relevance

/netbsd/external/gpl3/gcc.old/dist/libphobos/src/std/range/
H A Dpackage.d7284 auto inputRange = generate!(() => ++i).take(10); variable
7287 auto chunked = inputRange.chunks(2);
11439 inputRange = The input range being passed through.
11440 outputRange = This range will receive elements of `inputRange` progressively
11442 fun = This function will be called with elements of `inputRange`
11446 An input range that offers the elements of `inputRange`. Regardless of
11447 whether `inputRange` is a more powerful range (forward, bidirectional etc),
11448 the result is always an input range. Reading this causes `inputRange` to be
11512 return Result(inputRange, outputRange);
11534 return tee!pipeOnPop(inputRange, _fun);
[all …]
/netbsd/external/gpl3/gcc/dist/libphobos/src/std/experimental/allocator/
H A Dpackage.d2289 auto inputRange = ForcedInputRange!(immutable(Char))(&temp); in test() local
2291 assert(alloc.expandArray(arr, inputRange)); in test()
/netbsd/external/gpl3/gcc/dist/libphobos/src/std/range/
H A Dpackage.d8312 auto inputRange = generate!(() => ++i).take(10);
8315 auto chunked = inputRange.chunks(2);