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

com.vladsch.flexmark.tree.iteration.VoidIterationConsumer Maven / Gradle / Ivy

Go to download

flexmark-java library for recursive tree iteration with the filtering and recursion conditions provided by predicates

There is a newer version: 0.64.8
Show newest version
package com.vladsch.flexmark.tree.iteration;

import org.jetbrains.annotations.NotNull;

public interface VoidIterationConsumer extends IterationConsumer {
    void accept(@NotNull N it, @NotNull VoidIteration loop);

    // before start of all iterations
    default void beforeStart(@NotNull VoidIteration iteration) {

    }

    // iteration is done, before returning
    default void afterEnd(@NotNull VoidIteration iteration) {

    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy