String

Constructors

this
this(ULString str)
Undocumented in source.
this
this(string source)

Create string from a D string.

Destructor

~this
~this()

Destroy string (you should destroy any strings you explicitly Create).

Members

Functions

empty
bool empty()

Whether this string is empty or not.

idup
String idup()

Create string from copy of this string.

opAssign
auto opAssign(string str)

Replaces the contents of this string with the contents of a string.

opAssign
auto opAssign(String str)

Replaces the contents of this string with the contents of str.

opAssign
auto opAssign(ULString str)

Replaces the contents of this string with the contents of str.

toString
string toString()
utf16
String utf16(wstring str)

Create string from a UTF-16 buffer.

utf8
String utf8(string str)

Create string from a UTF-8 buffer.

Variables

ptr
ULString ptr;

See Also

Meta