- __ArrayCast
TTo[] __ArrayCast(TFrom[] from)
The compiler lowers expressions of cast(TTo[])TFrom[] to
this implementation.
- __ArrayDtor
void __ArrayDtor(T[] a)
Undocumented in source. Be warned that the author may not have intended to support it.
- __ArrayEq
bool __ArrayEq(T1[] a, T2[] b)
Undocumented in source. Be warned that the author may not have intended to support it.
- __ArrayPostblit
void __ArrayPostblit(T[] a)
Undocumented in source. Be warned that the author may not have intended to support it.
- __cmp
int __cmp(T[] lhs, T[] rhs)
Undocumented in source. Be warned that the author may not have intended to support it.
- __cmp
int __cmp(T1[] s1, T2[] s2)
Undocumented in source. Be warned that the author may not have intended to support it.
- __ctfeWrite
void __ctfeWrite(const(char)[] s)
Undocumented in source. Be warned that the author may not have intended to support it.
- __equals
bool __equals(T1[] lhs, T2[] rhs)
Undocumented in source. Be warned that the author may not have intended to support it.
- __switch
int __switch(T[] condition)
Undocumented in source. Be warned that the author may not have intended to support it.
- __switch_error
void __switch_error(string file, size_t line)
Undocumented in source. Be warned that the author may not have intended to support it.
- _d_assert_fail
string _d_assert_fail(A a, B b)
Undocumented in source. Be warned that the author may not have intended to support it.
- _d_delThrowable
void _d_delThrowable(Throwable )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- _postblitRecurse
void _postblitRecurse(S s)
Undocumented in source. Be warned that the author may not have intended to support it.
- _postblitRecurse
void _postblitRecurse(E[n] arr)
Undocumented in source. Be warned that the author may not have intended to support it.
- _xopCmp
bool _xopCmp(void* , void* )
Undocumented in source. Be warned that the author may not have intended to support it.
- _xopEquals
bool _xopEquals(void* , void* )
Undocumented in source. Be warned that the author may not have intended to support it.
- destroy
void destroy(T obj)
Destroys the given object and optionally resets to initial state. It's used to
destroy an object, calling its destructor or finalizer so it no longer
references any other objects. It does not initiate a GC cycle or free
any GC memory.
If initialize is supplied false, the object is considered invalid after
destruction, and should not be referenced.
Forms the symbols available to all D programs. Includes Object, which is the root of the class object hierarchy. This module is implicitly imported.