Skip to content

Latest commit

 

History

History
34 lines (32 loc) · 1.87 KB

common.rst

File metadata and controls

34 lines (32 loc) · 1.87 KB

Common Compile/Runtime Errors

  • Passing a non-borrowed range (a range which, effectively, cannot be cheaply copied) is considered an error since it has grace performance impacts. If you know that you are passing a range into the *_into class of functions, please mark that range as a borrowed range using std::ranges::enable_borrowed_range (C++20) or ztd::ranges::enable_borrowed_range (C++17 and lower) so that ztd.text knows how to handle it.