All Downloads are FREE. Search and download functionalities are using the official Maven repository.

smallcheck.generators.BoolGen Maven / Gradle / Ivy

The newest version!
package smallcheck.generators;

import java.util.stream.Stream;

/**
 *
 */
public class BoolGen extends SeriesGen {
    @Override
    public Stream generate(int depth) {
        return Stream.of(false, true);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy