summaryrefslogtreecommitdiff
path: root/include/mbgl/util/range.hpp
blob: 5591a22a1f3d12888d9edce9235902bc19f385e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <utility>

#pragma once

namespace mbgl {

template <class T>
class Range {
public:
    constexpr Range(T min_, T max_)
        : min(std::move(min_)), max(std::move(max_)) {}

    T min;
    T max;
};

template <class T>
bool operator==(const Range<T>& a, const Range<T>& b) {
    return a.min == b.min && a.max == b.max;
}

template <class T>
bool operator!=(const Range<T>& a, const Range<T>& b) {
    return !(a == b);
}

} // namespace mbgl