1 package com.github.lstephen.ai.search; 2 3 import java.util.function.Predicate; 4 5 /** 6 * 7 * @author lstephen 8 */ 9 public interface Validator<S> extends Predicate<S> { 10 } 11