Uses of Interface
com.vladsch.flexmark.util.collection.iteration.ReversiblePeekingIterable
-
Packages that use ReversiblePeekingIterable Package Description com.vladsch.flexmark.ast.util com.vladsch.flexmark.util.ast com.vladsch.flexmark.util.collection.iteration -
-
Uses of ReversiblePeekingIterable in com.vladsch.flexmark.ast.util
Methods in com.vladsch.flexmark.ast.util with parameters of type ReversiblePeekingIterable Modifier and Type Method Description private void
ClassifyingBlockTracker. addBlocks(ReversiblePeekingIterable<Node> nodes)
private void
ClassifyingBlockTracker. removeBlocks(ReversiblePeekingIterable<Node> nodes)
-
Uses of ReversiblePeekingIterable in com.vladsch.flexmark.util.ast
Classes in com.vladsch.flexmark.util.ast that implement ReversiblePeekingIterable Modifier and Type Class Description class
DescendantNodeIterable
class
NodeIterable
Fields in com.vladsch.flexmark.util.ast declared as ReversiblePeekingIterable Modifier and Type Field Description static ReversiblePeekingIterable<Node>
NodeIterable. EMPTY
private ReversiblePeekingIterable<Node>
DescendantNodeIterable. iterable
Methods in com.vladsch.flexmark.util.ast that return ReversiblePeekingIterable Modifier and Type Method Description @NotNull ReversiblePeekingIterable<Node>
Node. getChildren()
@NotNull ReversiblePeekingIterable<Node>
Node. getDescendants()
@NotNull ReversiblePeekingIterable<Node>
Node. getReversedChildren()
@NotNull ReversiblePeekingIterable<Node>
Node. getReversedDescendants()
@NotNull ReversiblePeekingIterable<Node>
DescendantNodeIterable. reversed()
@NotNull ReversiblePeekingIterable<Node>
NodeIterable. reversed()
Methods in com.vladsch.flexmark.util.ast with parameters of type ReversiblePeekingIterable Modifier and Type Method Description private void
ClassifyingNodeTracker. addNodes(@NotNull ReversiblePeekingIterable<Node> nodes)
private void
ClassifyingNodeTracker. removeNodes(@NotNull ReversiblePeekingIterable<Node> nodes)
Constructors in com.vladsch.flexmark.util.ast with parameters of type ReversiblePeekingIterable Constructor Description DescendantNodeIterable(@NotNull ReversiblePeekingIterable<Node> iterable)
iterate nodes, with descendants, depth first until all are done -
Uses of ReversiblePeekingIterable in com.vladsch.flexmark.util.collection.iteration
Methods in com.vladsch.flexmark.util.collection.iteration that return ReversiblePeekingIterable Modifier and Type Method Description @NotNull ReversiblePeekingIterable<E>
ReversiblePeekingIterable. reversed()
-