Skip to main content

Strings (string)

A string handles like a primitive, but technically isn't one. In C++, a string is represented using a UTF-8 std::string.

interface MyHybrid extends HybridObject {
concat(a: string, b: string): string
}