Searched defs:Range (Results 1 – 3 of 3) sorted by relevance
31 struct Range { struct36 bool operator==(const Range& other) const { argument
532 struct Range { struct533 Range(T t1, T t2) : t1_(t1), t2_(t2) {} in Range() function534 constexpr auto begin() const noexcept { return t1_; } in begin()535 constexpr auto end() const noexcept { return t2_; } in end()536 T t1_;537 T t2_;
130 Range(off_t offset, size_t length) : offset_(offset), length_(length) {} in Range() function131 explicit Range(off_t offset) : offset_(offset), length_(0) {} in Range() function