com.vladsch.flexmark.util.collection.iteration.ReversibleIterable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-util-collection Show documentation
Show all versions of flexmark-util-collection Show documentation
flexmark-java collection utility classes
The newest version!
package com.vladsch.flexmark.util.collection.iteration;
import org.jetbrains.annotations.NotNull;
public interface ReversibleIterable extends Iterable {
@Override
@NotNull
ReversibleIterator iterator();
@NotNull
ReversibleIterable reversed();
boolean isReversed();
@NotNull
ReversibleIterator reversedIterator();
}