Interface BoolSupplier

  • 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 BoolSupplier
    Function-Pointer Input: NONE Output: boolean.



    Quite similar to Java's 'IntSupplier', the specialized 'Supplier' for primitive-integers, but whose 'get' method has been modified to return a 'boolean'-primitive.


    • Method Summary

       
      @FunctionalInterface (Lambda) Method
      Modifier and Type Method
      boolean getAsBool()
    • Method Detail

      • getAsBool

         
        boolean getAsBool()
        Retrieves a result, as a 'boolean'.
        Returns:
        The 'boolen' result.