Searched defs:Range (Results 1 – 3 of 3) sorted by relevance
31 struct Range { struct36 bool operator==(const Range& other) const { argument
536 struct Range { struct537 Range(T t1, T t2) : t1_(t1), t2_(t2) {} in Range() function538 constexpr auto begin() const noexcept { return t1_; } in begin()539 constexpr auto end() const noexcept { return t2_; } in end()540 T t1_;541 T t2_;
131 Range(off_t offset, size_t length) : offset_(offset), length_(length) {} in Range() function132 explicit Range(off_t offset) : offset_(offset), length_(0) {} in Range() function