Searched defs:lub (Results 1 - 1 of 1) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java2782 m = new WildcardType(lub(upperBound(act1.head),
2841 * Return the least upper bound of pair of types. if the lub does
2844 public Type lub(Type t1, Type t2) { method in class:Types
2845 return lub(List.of(t1, t2));
2849 * Return the least upper bound (lub) of set of types. If the lub
2852 public Type lub(List<Type> ts) { method in class:Types
2884 // calculate lub(A[], B[])
2894 // lub(int[], B[]) is Cloneable & Serializable
2899 // lub(in
[all...]

Completed in 45 milliseconds