mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
change range functions adapt
This commit is contained in:
parent
92cc7881d6
commit
8278a2642c
15 changed files with 454 additions and 100 deletions
|
@ -23,8 +23,14 @@ namespace sprout {
|
|||
// ADL callable range_begin(cont) -> range_begin(cont)
|
||||
// [default]
|
||||
// Container is T[N] -> iterator(cont)
|
||||
// otherwise, ADL callable begin(cont) -> begin(cont)
|
||||
// otherwise, callabe cont.begin() -> cont.begin()
|
||||
// otherwise, Container is not const
|
||||
// && sprout::is_const_iterator_cast_convertible<const_iterator, iterator>
|
||||
// && (callable sprout::as_const(cont).begin()
|
||||
// || ADL(without sprout) callable begin(sprout::as_const(cont))
|
||||
// )
|
||||
// -> sprout::const_iterator_cast<iterator>(sprout::begin(sprout::as_const(cont)))
|
||||
// otherwise, callable cont.begin() -> cont.begin()
|
||||
// otherwise, ADL(without sprout) callable begin(cont) -> begin(cont)
|
||||
// otherwise -> std::begin(cont)
|
||||
//
|
||||
template<typename Container>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue