using System; namespace Immutable { public sealed class Unit : IEquatable { public static readonly Unit unit = new Unit(); private Unit() {} public static bool operator ==(Unit a, Unit b) => Equality.Operator(a, b); public static bool operator !=(Unit a, Unit b) => !(a == b); public override bool Equals(object other) => Equality.Untyped(this, other, x => x as Unit); public bool Equals(Unit other) => Equality.Equatable(this, other); public override int GetHashCode() => HashCode.Combine("Unit"); public override string ToString() => "Unit"; } }