Box.contains

  1. bool contains(bound_t point)
  2. bool contains(T x, T y)
  3. bool contains(T x, T y, T z)
    struct Box(T, int N)
    @nogc pure const nothrow
    static if(N >= 3)
    bool
    contains
    (
    T x
    ,
    T y
    ,
    T z
    )
  4. bool contains(Box other)

Return Value

Type: bool

true if it contains point x, y, z.

Meta