Skip to content

Releases: arturbac/stralgo

v1.3.2

14 Aug 17:40
Compare
Choose a tag to compare

What's Changed

  • fix #3 using std::views with library functions by @arturbac in #4

v1.3.1

05 Jul 08:58
Compare
Choose a tag to compare

v1.3.1

  • added formatters for char16_t,char32_t, wchar_t wide strings, string_views

v1.3.0

04 Jul 14:47
2ab75bb
Compare
Choose a tag to compare

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

06 Mar 07:01
Compare
Choose a tag to compare

upgrade library to match latest small_vectors v3.1.0