Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DSequence.h262 template <typename T> struct iota_range { struct
273 explicit iota_range(T Begin, T End, bool Inclusive) in iota_range() argument
280 size_t size() const { return PastEndValue - BeginValue; } in size()
281 bool empty() const { return BeginValue == PastEndValue; } in empty()
306 return iota_range<T>(Begin, End, false); in seq() argument