mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-04 14:14:09 +00:00
fix inline
add container/indexes.hpp add tuple/indexes.hpp
This commit is contained in:
parent
ba6482d1ec
commit
c6bd230ee4
340 changed files with 1087 additions and 979 deletions
|
@ -11,12 +11,12 @@ namespace sprout {
|
|||
|
||||
// 25.4.5.1 includes
|
||||
template<typename Range1, typename Range2>
|
||||
SPROUT_CONSTEXPR bool includes(Range1 const& range1, Range2 const& range2) {
|
||||
inline SPROUT_CONSTEXPR bool includes(Range1 const& range1, Range2 const& range2) {
|
||||
return sprout::includes(sprout::begin(range1), sprout::end(range1), sprout::begin(range2), sprout::end(range2));
|
||||
}
|
||||
|
||||
template<typename Range1, typename Range2, typename Compare>
|
||||
SPROUT_CONSTEXPR bool includes(Range1 const& range1, Range2 const& range2, Compare comp) {
|
||||
inline SPROUT_CONSTEXPR bool includes(Range1 const& range1, Range2 const& range2, Compare comp) {
|
||||
return sprout::includes(sprout::begin(range1), sprout::end(range1), sprout::begin(range2), sprout::end(range2), comp);
|
||||
}
|
||||
} // namespace range
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue