Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/views/
H A Dcloseable_view.hpp43 struct closing_view struct
46 explicit inline closing_view(Range& r) in closing_view() function
50 typedef closing_iterator<Range> iterator;
51 typedef closing_iterator<Range const> const_iterator;
53 inline const_iterator begin() const { return const_iterator(m_range); } in begin()
54 inline const_iterator end() const { return const_iterator(m_range, true); } in end()
56 inline iterator begin() { return iterator(m_range); } in begin()
57 inline iterator end() { return iterator(m_range, true); } in end()
59 Range& m_range;