spullara.util.Some Maven / Gradle / Ivy
The newest version!
package spullara.util;
/**
* Represents an optional value that exists.
*/
public class Some extends Option {
protected Some(T value) {
this();
add(value);
}
protected Some() {
super(1);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy