String

Wrapper around string, to distinguish between Null and NotNull fields: string is NotNull, String is Null -- same interface as in Nullable

struct String {
string _value;
}

Alias This

_value

Members

Functions

isNull
bool isNull()

Returns true if and only if this is in the null state.

nullify
void nullify()

Forces this to the null state.

Meta