Ox String Types
Ox has six different major string types. These types are divided into two categories: store types and view types. String stores maintain a copy of the string data, whereas view types only maintain a reference to the data. Views should be used where you otherwise might use a const reference to a string store type. Having all of these different string types may sound like an interoperability nightmare, but taking string view types extensively where applicable makes the imagined interoperability issues virtually non-existent. ...