constexpr

Allocates T in the data segment when T is *not* a dynamic array, this is used identically to T normally.

  1. struct constexpr(T, uint R0 = __LINE__, string R1 = __TIMESTAMP__, string R2 = __FILE_FULL_PATH__, string R3 = __FUNCTION__)
    struct constexpr (
    T
    uint R0 = __LINE__
    string R1 = __TIMESTAMP__
    string R2 = __FILE_FULL_PATH__
    string R3 = __FUNCTION__
    ) if (
    !isDynamicArray!T
    ) {}
  2. struct constexpr(T : U[], U)
  3. constexpr!T constexpr(T val)

Alias This

value

Members

Functions

opAssign
auto opAssign(T ahs)
Undocumented in source. Be warned that the author may not have intended to support it.
opAssign
auto opAssign(T ahs)
Undocumented in source. Be warned that the author may not have intended to support it.
toString
string toString()
Undocumented in source. Be warned that the author may not have intended to support it.
toString
string toString()
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

value
T value;
Undocumented in source.

Meta