xieite ::strlen ()
Defined in header <xieite/ctnr/strlen.hpp>
A
constexpr
(and slightly more general) replacement for std ::strlen ()
.Declaration
#0template <typename Ch > [[nodiscard ]]constexpr std ::size_t strlen (std ::basic_string_view <Ch >strv )noexcept ;
#1
template <typename Ch > [[nodiscard ]]constexpr std ::size_t strlen (const std ::basic_string <Ch >& str )noexcept ;
#2
Returnstemplate <xieite ::is_ch Ch ,std ::size_t n > [[nodiscard ]]constexpr std ::size_t strlen (const Ch (& )[n ])noexcept ;
n - 1
. The compiler should prefer this overload for string literals.#3
Invokes undefined behavior if the passed string is not null-terminated.template <typename Str >requires (xieite ::is_ch <std ::remove_pointer_t <Str >>) [[nodiscard ]]constexpr std ::size_t strlen (Str str )noexcept ;
#4
Always returnstemplate <xieite ::is_ch Ch > [[nodiscard ]]constexpr std ::size_t strlen (Ch )noexcept ;
1
.Example
Output:int main () {xieite ::dump (xieite ::strlen ("abcdef" )); }
[View in Compiler Explorer]6