v1.2.1
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);
}
Full Changelog: v1.2.0...v1.2.1