slight name change

iterator enumeration was closer to iteration, name now reflects that
v1
Brett 2024-07-20 13:31:58 -04:00
parent 60f77961fb
commit 7c49a8a854
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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)};
} }