ceil method

CustomPoint<T> ceil()

Implementation

CustomPoint<T> ceil() {
  return CustomPoint(x.ceil(), y.ceil());
}