All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vladsch.flexmark.util.collection.iteration.ReversibleIterable Maven / Gradle / Ivy

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy