View Javadoc
1   package com.github.lstephen.ai.search.action;
2   
3   import java.util.function.Function;
4   import java.util.stream.Stream;
5   
6   /**
7    *
8    * @author lstephen
9    */
10  public interface ActionGenerator<S> extends Function<S, Stream<? extends Action<S>>> {
11  }
12