Error (?) in the documentation, Section 6.5
Closed this issue · 1 comments
eyalroz commented
In section 6.5 of the quick reference, it says:
template <typename Iterator, typename CharT>
/*...*/ range(const Iterator& begin, const Iterator& end);
but in fact, in the source we have:
template <typename ForwardIt>
inline STRF_HD auto range(ForwardIt begin, ForwardIt end)
i.e. not the same template params.
robhz786 commented
Also, the overloads that take an array instead of a range class are missing.
I will fix soon.