Skip to content

Instantly share code, notes, and snippets.

@jenetics
Created June 11, 2019 18:02
Show Gist options
  • Save jenetics/e1d26922c6825818bdc038fabeaea868 to your computer and use it in GitHub Desktop.
Save jenetics/e1d26922c6825818bdc038fabeaea868 to your computer and use it in GitHub Desktop.
GP operation interface
public interface Op<T>
extends Function<T[], T>, Supplier<Op<T>>
{
public String name();
public int arity();
public T apply(T[] args);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment