0.3.6
- 0.3.6 May 15, 2018
- NEW:
view::exclusive_scan
(thanks to GitHub user @mitsutaka-takeda). - All views get non-
const
overloads of.empty()
and.size()
(see ericniebler/stl2#793). - Upgrade Conan support for conan 1.0.
subspan
interface tweaks.- Fix bug in
view::split
(see this stackoverflow question). - Fix bug in
view::stride
(see ericniebler/stl2#805). - Fix
const
-correctness problem inview::chunk
(see this stackoverflow question). - Replace uses of
ranges::result_of
withranges::invoke_result
. - Fix potential buffer overrun of
view::drop
over RandomAccessRanges. - Lots of
view::cartesian_product
fixes (see ericniebler/stl2#820, ericniebler/stl2#823). - Work around gcc-8 regression regarding
volatile
std::initializer_list
s (see ericniebler/stl2#826). - Fix
const
-correctness problem ofview::take
.
- NEW: