Interface FloatConsumer

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 FloatConsumer
Non-boxing version of {@link java.util.function.Consumer}<Float>.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(float arg)
    Applies this function.
  • Method Details

    • accept

      void accept(float arg)
      Applies this function.
      Parameters:
      arg - the argument to accept