S2Region.contains - multiple declarations

Function S2Region.contains

Returns true if and only if the given point is contained by the region. The point 'p' is generally required to be unit length, although some subtypes may relax this restriction.

abstract bool contains (
  in const(s2.util.math.vector.Vector!(double,3L)) p
);

Function S2Region.contains

Returns true if the region completely contains the given cell, otherwise returns false.

abstract bool contains (
  in const(S2Cell) cell
);