Uses of Class
edu.rice.cs.plt.collect.SingletonRelation

Packages that use SingletonRelation
edu.rice.cs.plt.collect Contains general-purpose extensions to and variations on the java.util collections framework. 
 

Uses of SingletonRelation in edu.rice.cs.plt.collect
 

Methods in edu.rice.cs.plt.collect that return SingletonRelation
static
<T1,T2> SingletonRelation<T1,T2>
SingletonRelation.make(Pair<? extends T1,? extends T2> pair)
          Call the constructor (allows type arguments to be inferred)
static
<T1,T2> SingletonRelation<T1,T2>
SingletonRelation.make(T1 first, T2 second)
          Call the constructor (allows type arguments to be inferred)
static
<T1,T2> SingletonRelation<T1,T2>
CollectUtil.singleton(T1 first, T2 second)
          Create an immutable singleton relation.