Home
last modified time | relevance | path

Searched defs:CurrentSep (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/algorithm/
H A Diteration.d2969 static struct CurrentSep struct
2971 private Separator _sep;
2972 private size_t sepIndex;
2973 private size_t sepLength; // cache the length for performance
2974 auto front() { return _sep[sepIndex]; } in front()
2975 void popFront() { sepIndex++; } in popFront()
2976 auto empty() { return sepIndex >= sepLength; } in empty()
2977 auto save() in save()
2983 void reset() in reset()
2988 void initialize(Separator sep) in initialize()