Example #1
0
 public bool Equals(InitializationAwareValue <T> other)
 {
     return(other != null && Initialized && other.Initialized && StandardLibraryMethods.AreEqual(value, other.value));
 }
Example #2
0
 public bool Equals(DataValue <T> other)
 {
     return(other != null && StandardLibraryMethods.AreEqual(val, other.val));
 }