operator""_s#

Fully qualified name: omni::operator""_s

Defined in omni/String.h

inline string omni::operator""_s(const char *str, std::size_t len)#

Creates a string of a character array literal.

Note

The literal suffix operator s is reserved by C++, so this is _s.

Parameters:
  • str – Pointer to the beginning of the raw character array literal.

  • len – Length of the raw character array literal.

Returns:

The string literal.