CnxStringView struct
#include <include/Cnx/String.h>
Cnx stringview type. A stringview is a "view" into a CnxString
. It allows you to lazily inspect the contents of the string, but not modify them. It is effectively a fat pointer into the contents of the associated CnxString
Public variables
- usize m_length
- The length of the string view.
-
const_
cstring m_view - The view.
-
const cnx_
stringview_ vtable_ t* m_vtable - The function vector table of methods associated with
CnxStringView