
org.leialearns.utilities.HasWrappedIterable Maven / Gradle / Ivy
package org.leialearns.utilities;
/**
* Provides a method to get the original iterable that was wrapped by i.e.,
* a TransformingIterable
.
*/
public interface HasWrappedIterable {
/**
* Returns the wrapped iterable that backs this iterable.
* @return The wrapped iterable that backs this iterable
*/
Iterable> getWrappedIterable();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy