#include "tdecl.h"
#include <iterator>
#include <utility>
Go to the source code of this file.
|
namespace | kblib |
| The main namespace in which all entities from kblib are defined.
|
|
|
template<typename Range > |
constexpr auto | kblib::enumerate (Range &&r) -> enumerate_t< Range && > |
| Allow access to indexes while using range-based for loops. Safe to use with rvalues. More...
|
|
template<typename It , typename EIt > |
constexpr auto | kblib::enumerate (It begin, EIt end) -> enumerate_t< It, EIt > |
| Allow access to indexes while using range-based for loops. More...
|
|