- Unit
- Default = default
- GetHashCode ()
- Equals (object? obj)
- ToString ()
- Equals (Unit other)
- == (Unit lhs, Unit rhs)
- != (Unit lhs, Unit rhs)
- > (Unit lhs, Unit rhs)
- >= (Unit lhs, Unit rhs)
- < (Unit lhs, Unit rhs)
- <= (Unit lhs, Unit rhs)
- Return <T> (T anything)
- Return <T> (Func<T> anything)
- CompareTo (Unit other)
- Combine (Unit rhs)
- + (Unit a, Unit b)
- Empty
- Prelude
A unit type is a type that allows only one value (and thus can hold no information)
field Unit Default = default Source #
method int GetHashCode () Source #
method T Return <T> (T anything) Source #
Provide an alternative value to unit
type | T | Alternative value type |
param | anything | Alternative value |
returns | Alternative value |