rt.adi

Part of the D programming language runtime library. Dynamic array property support routines

Members

Functions

_adCmp
int _adCmp(void[] a1, void[] a2, TypeInfo ti)

Support for array compare test. The actual type is painted on the return value by the frontend Given lengths are number of elements

_adCmpChar
int _adCmpChar(void[] a1, void[] a2)

Support for array compare test. The actual type is painted on the return value by the frontend Given lengths are number of elements

_adEq
int _adEq(void[] a1, void[] a2, TypeInfo ti)

Support for array equality test. The actual type is painted on the return value by the frontend Given lengths are number of elements

_adReverse
void[] _adReverse(void[] a, size_t szelem)

Support for array.reverse property. The actual type is painted on the return value by the frontend Given and returned length are number of elements

_adReverseChar
char[] _adReverseChar(char[] a)

Reverse array of chars. Handled separately because embedded multibyte encodings should not be reversed.

_adReverseWchar
wchar[] _adReverseWchar(wchar[] a)

Reverse array of wchars. Handled separately because embedded multiword encodings should not be reversed.

_adSortChar
char[] _adSortChar(char[] a)

Sort array of chars.

_adSortWchar
wchar[] _adSortWchar(wchar[] a)

Sort array of wchars.

Meta