std::char_traits::length

From cppreference.com
static std::size_t length( const char_type* s );

Returns the length of the character sequence pointed to by s, that is, the position of the terminating null character (Char()).

Contents

[edit] Parameters

s - pointer to a character sequence to return length of

[edit] Return value

The length of character sequence pointed to by s.

[edit] Exceptions

(none)

[edit] Complexity

Linear.