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

org.quicktheories.impl.ExtendedRandomnessSource Maven / Gradle / Ivy

There is a newer version: 0.26
Show newest version
package org.quicktheories.impl;

import org.quicktheories.core.RandomnessSource;

/**
 * RandomnessSource with additional operations - kept separate to allow
 * classes it depends on to remain package private
 */
public interface ExtendedRandomnessSource extends RandomnessSource {
  
  long tryNext(Constraint constraints);
  void add(Precursor other);
  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy