Initially I stuck with just passing around "const char*", and where appropriate also a size. This can be a bit bulky, and would be better passing around Core::StringView for all read only access, and Core::String for writing.
Before using any of these more widely, there should also be a fixed size string container.
Initially I stuck with just passing around "const char*", and where appropriate also a size. This can be a bit bulky, and would be better passing around Core::StringView for all read only access, and Core::String for writing.
Before using any of these more widely, there should also be a fixed size string container.