Module aeonics.core
Package aeonics.util

Interface Functions.BiConsumer<A,​B>

    • Method Detail

      • accept

        default void accept​(A a)
                     throws java.lang.Exception
        Description copied from interface: Functions.Consumer
        Performs this operation on the given argument.
        Specified by:
        accept in interface Functions.Consumer<A>
        Parameters:
        a - the input argument
        Throws:
        java.lang.Exception - if an error happens
      • accept

        void accept​(A a,
                    B b)
             throws java.lang.Exception
        Performs this operation on the given arguments.
        Parameters:
        a - the input argument
        b - the input argument
        Throws:
        java.lang.Exception - if an error happens