Skip to content

v1.2.1

Compare
Choose a tag to compare
@andreiavrammsd andreiavrammsd released this 12 Jun 10:05
· 11 commits to master since this release
4d797f1

What's Changed

  • Improve integration with STD algorithms by moving values instead of copying them @andreiavrammsd in #71

Known limitation

In some situations on MSVC, an algorithm might not work, and a loop could be an alternative:

std::transform(input_chan.begin(), input_chan.end(), msd::back_inserter(output_chan))

vs

for (auto&& value : input_chan) {
    output_chan.write(value);
}

See more here.

Full Changelog: v1.2.0...v1.2.1