Static methods
statictoCharView(s:String):View<Char>
statictoCharView(s:String, buffer:View<Char>):Int
Returns a view to UTF8 encoded characters of the given string. The characters in the view will be null terminated.
Depending on the internal incoding of s this function may allocate GC bytes.
Parameters:
s | String to return the view of. |
|---|
statictoString(buffer:View<Char>):String
statictoString(buffer:View<Char16>):String
Allocates a string from the provided utf8 characters.
Parameters:
buffer | Buffer to characters, does not need to be null terminated. |
|---|
statictoWideCharView(s:String):View<Char16>
statictoWideCharView(s:String, buffer:View<Char16>):Int
Returns a view to UTF16 encoded characters of the given string. The characters in the view will be null terminated.
Depending on the internal incoding of s this function may allocate GC bytes.
Parameters:
s | String to return the view of. |
|---|