de.agentlab.ds.tree.Visitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ds Show documentation
Show all versions of ds Show documentation
Some common datastructures
The newest version!
package de.agentlab.ds.tree;
public interface Visitor {
boolean visit(T data);
}