package bjc.utils.patterns; import java.util.*; import java.util.function.*; import java.util.regex.*; import bjc.data.*; /** * A simpler version of ComplexPattern, which always applies against Object * * @author Ben Culkin * * @param The type returned by the pattern. * @param The state type returned by the predicate. */ public interface Pattern extends ComplexPattern { /* Pattern factory methods */ }