| 42 | } |
| 43 | |
| 44 | static constexpr auto strlen(auto str) noexcept { |
| 45 | using _impl_::idx; |
| 46 | using _impl_::tmp; |
| 47 | return for_(block_(idx = 0, tmp = str), true, |
| 48 | ++idx)(if_(end(*tmp[*idx]))(break_(*idx))); |
| 49 | } |
| 50 | |
| 51 | static constexpr auto strcpy(auto dst, auto src) noexcept { |
| 52 | using _impl_::idx; |