edu.cmu.cs.crystal.util
Interface SimpleMap<K,V>

Type Parameters:
K -
V -

public interface SimpleMap<K,V>

That's right, a really simple map interface. The only thing you can do with it is get things. Check out getInvariantPermissions in PluralTupleLatticeElement to see how I use this to create a lazy map. Note that there is no real good reason to have this interface now that we have Lambda, except for the possibly more precise implication.

Author:
Nels Beckman

Method Summary
 V get(K key)
           
 

Method Detail

get

V get(K key)