Box.this

  1. this(BoundType min, BoundType max)
  2. this(T min, T max)
    struct Box(T, int N)
    pure nothrow @safe @nogc
    static if(N == 1)
    this
    (
    T min
    ,
    T max
    )
    if (
    N >= 1 &&
    N <= 3
    )
  3. this(T min_x, T min_y, T max_x, T max_y)
  4. this(T min_x, T min_y, T min_z, T max_x, T max_y, T max_z)

Meta