slight name change
iterator enumeration was closer to iteration, name now reflects thatv1
parent
60f77961fb
commit
7c49a8a854
|
@ -1,7 +1,7 @@
|
||||||
cmake_minimum_required(VERSION 3.20)
|
cmake_minimum_required(VERSION 3.20)
|
||||||
include(cmake/color.cmake)
|
include(cmake/color.cmake)
|
||||||
|
|
||||||
set(BLT_VERSION 0.18.8)
|
set(BLT_VERSION 0.18.9)
|
||||||
set(BLT_TEST_VERSION 0.0.1)
|
set(BLT_TEST_VERSION 0.0.1)
|
||||||
|
|
||||||
set(BLT_TARGET BLT)
|
set(BLT_TARGET BLT)
|
||||||
|
|
|
@ -176,7 +176,7 @@ namespace blt
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename Begin, typename End>
|
template<typename Begin, typename End>
|
||||||
static inline auto enumerate(Begin&& begin, End&& end)
|
static inline auto iterate(Begin&& begin, End&& end)
|
||||||
{
|
{
|
||||||
return itr::itr_container<Begin, End>{std::forward<Begin>(begin), std::forward<End>(end)};
|
return itr::itr_container<Begin, End>{std::forward<Begin>(begin), std::forward<End>(end)};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue