com.linkedin.dagli.objectio.ObjectIteratorNext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of objectio-core Show documentation
Show all versions of objectio-core Show documentation
DAG-oriented machine learning framework for bug-resistant, readable, efficient, maintainable and trivially deployable models in Java and other JVM languages
package com.linkedin.dagli.objectio;
/**
* Functional interface for {@link ObjectIterator}'s family of {@code next...()} methods; useful for simplify the
* implementation of iterators that wrap other iterators.
*
* @param the type of item provided by the iterator
*/
@FunctionalInterface
public interface ObjectIteratorNext {
int next(ObjectIterator iterator, Object[] target, int offset, int count);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy