encode

fnE[] encode(E)(dchar c)

Encodes a single code point.

This function encodes a single code point into one or more code units. It returns a string containing those code units.

The input to this function MUST be a valid code point. This is enforced by the function's in-contract.

The type of the output cannot be deduced. Therefore, it is necessary to explicitly specify the encoding as a template parameter.

Supersedes: This function supersedes std.utf.encode(), however, note that the function codeUnits() supersedes it more conveniently.

Standards

Unicode 5.0, ASCII, ISO-8859-1, ISO-8859-2, WINDOWS-1250,

WINDOWS-1251, WINDOWS-1252

Parameters

cthe code point to be encoded
fnsize_t encode(E)(dchar c, E[] array)

Encodes a single code point into an array.

This function encodes a single code point into one or more code units The code units are stored in a user-supplied fixed-size array, which must be passed by reference.

The input to this function MUST be a valid code point. This is enforced by the function's in-contract.

The type of the output cannot be deduced. Therefore, it is necessary to explicitly specify the encoding as a template parameter.

Supersedes: This function supersedes std.utf.encode(), however, note that the function codeUnits() supersedes it more conveniently.

Standards

Unicode 5.0, ASCII, ISO-8859-1, ISO-8859-2, WINDOWS-1250,

WINDOWS-1251, WINDOWS-1252

Parameters

cthe code point to be encoded
arraythe destination array

Returns

the number of code units written to the array
fnsize_t encode(E, R)(dchar c, auto ref R range) if (isNativeOutputRange!(R, E))
No documentation available for this declaration.
fnvoid encode(E)(dchar c, void delegate(E) dg)

Encodes a single code point to a delegate.

This function encodes a single code point into one or more code units. The code units are passed one at a time to the supplied delegate.

The input to this function MUST be a valid code point. This is enforced by the function's in-contract.

The type of the output cannot be deduced. Therefore, it is necessary to explicitly specify the encoding as a template parameter.

Supersedes: This function supersedes std.utf.encode(), however, note that the function codeUnits() supersedes it more conveniently.

Standards

Unicode 5.0, ASCII, ISO-8859-1, ISO-8859-2, WINDOWS-1250,

WINDOWS-1251, WINDOWS-1252

Parameters

cthe code point to be encoded
dgthe delegate to invoke for each code unit
fnsize_t encode(Tgt, Src, R)(in Src[] s, R range)

Encodes the contents of s in units of type Tgt, writing the result to an output range.

Returns

The number of Tgt elements written.

Parameters

TgtElement type of range.
sInput array.
rangeOutput range.