19 lines
632 B
C#
19 lines
632 B
C#
using System;
|
|
|
|
namespace Immutable {
|
|
public sealed class Unit : IEquatable<Unit> {
|
|
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<Unit>(this, other, x => x as Unit);
|
|
public bool Equals(Unit other)
|
|
=> Equality.Equatable<Unit>(this, other);
|
|
public override int GetHashCode()
|
|
=> HashCode.Combine("Unit");
|
|
public override string ToString() => "Unit";
|
|
}
|
|
} |