functions.ConsumerIndexed Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nostream Show documentation
Show all versions of nostream Show documentation
Extension of classic Java data structures that avoid the use of Stream abstraction in favour of direct list transformation methods
The newest version!
package functions;
/**
* Created by mikedev on 02/08/16.
*/
@FunctionalInterface
public interface ConsumerIndexed {
void alter(T e, int index);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy