public void Add(CubeContent <Z, VALUE> z, VALUE d) { this.Add(z.Key, d); }
public void ContainsKey(CubeContent <Z, VALUE> z) { this.ContainsKey(z.Key); }
public void Remove(CubeContent <Z, VALUE> z) { this.Remove(z.Key); }
public VALUE Get(out bool exists, VALUE defaultData, CubeContent <Z, VALUE> z) { return(this.Get(out exists, defaultData, z.Key)); }
public VALUE Get(CubeContent <Z, VALUE> z) { return(this.Get(z.Key)); }
public VALUE this[CubeContent <Z, VALUE> z] { get { return(Get(z)); } set { this.Upsert(true, z.Key, value); } }