struct String

The internal implementation of the built-in string type. Fields m_p and m_length can be accessed directly. To get the contents of m_sz, cast a string to char const*.

struct String {
    // fields

    char const* readonly m_p;
    size_t readonly m_length;
};