We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0083c80 commit b602a2cCopy full SHA for b602a2c
1 file changed
core/src/main/java/fj/Bounded.java
@@ -1,9 +1,16 @@
1
package fj;
2
3
+/**
4
+ * The Bounded class is used to name the upper and lower limits of a type.
5
+ * Ord is not a superclass of Bounded since types that are not totally ordered may also have upper and lower bounds.
6
+ */
7
public class Bounded<A> {
8
9
private final Definition<A> def;
10
11
+ /**
12
+ * Minimal definition of Bounded
13
14
public interface Definition<A> {
15
A min();
16
0 commit comments