Méthode | Description | |
---|---|---|
Eq ( this obj, object other ) : bool |
Tests whether 2 objects are equal, but handles nulls gracefully Stolen from Clojure |
|
LazyEq ( this obj, object other ) : bool | ||
LazyNeq ( this obj, object other ) : bool | ||
Neq ( this obj, object other ) : bool |
Inverse of Eq
|
|
Print ( this o ) : string |
Like ToString, but it handles nulls and gives nicer results for some objects. There should be no other implementations of Print, because we want the thing to behave polymorphically, and there's no assurance of that unless we centralize here |
public static Eq ( this obj, object other ) : bool | ||
obj | this | |
other | object | |
Résultat | bool |
public static LazyEq ( this obj, object other ) : bool | ||
obj | this | |
other | object | |
Résultat | bool |
public static LazyNeq ( this obj, object other ) : bool | ||
obj | this | |
other | object | |
Résultat | bool |
public static Neq ( this obj, object other ) : bool | ||
obj | this | |
other | object | |
Résultat | bool |