Interface PointTwoDimensionalConsumer

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface PointTwoDimensionalConsumer
Like a IntConsumer but accepts two coordinates of a point as scalar arguments.
Author:
Owen Feehan
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(Point2i point)
    Accepts a point like with a Consumer in general.
  • Method Details

    • accept

      void accept(Point2i point)
      Accepts a point like with a Consumer in general.
      Parameters:
      point - the current iteration point in a buffer.