org.paukov.combinatorics3.IGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of combinatoricslib3 Show documentation
Show all versions of combinatoricslib3 Show documentation
Simple java library to generate permutations, combinations and other combinatorial sequences
/**
* Combinatorics Library 3
* Copyright 2016 Dmytro Paukov [email protected]
*/
package org.paukov.combinatorics3;
import java.util.stream.Stream;
/**
* This interface is implemented by all generic generators in the library
*
* @author Dmytro Paukov
* @version 3.0
* @param
* The type of the elements
*/
public interface IGenerator extends Iterable {
Stream stream();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy