Releases: arturbac/stralgo
Releases · arturbac/stralgo
v1.4.0
What's Changed
- update cpm and workflows by @arturbac in #5
- mark unsafe buffer access by @arturbac in #6
- upgrade to 1.4.0 by @arturbac in #7
-
- remove some iterator function arguments, leave only ranges/views (prevent unsafe use)
-
- change licence from MIT to less restrictive BSL-1.0
v1.3.2
What's Changed
- fix #3 using std::views with library functions by @arturbac in #4
v1.3.1
v1.3.1
- added formatters for char16_t,char32_t, wchar_t wide strings, string_views
v1.3.0
v1.3.0
- added utf_explicit_output_iterator_t for use with untyped output iterators
- upgraded to match latest small_vectors v3.1.6
constexpr std::basic_string_view u8test{ u8"Lorem ..."};
utf::utf_input_view_t input{u8test};
std::vector<char32_t> output;
utf::utf_explicit_output_iterator_t<char32_t>::iterator oit{std::back_inserter(output)};
std::ranges::copy(input, oit);
v1.2.0
upgrade library to match latest small_vectors v3.1.0