Aardvark.Base


Pair<'T>

A pair is a structure containing two elements of the same type, that can be accessed at index 0 and index 1, or using the fields E0 and E1.

Constructors

ConstructorDescription
new(e)
Signature: e:'T -> unit
new(e0, e1)
Signature: (e0:'T * e1:'T) -> unit

Instance members

Instance memberDescription
Copy(fun)
Signature: fun:Func<'T,'TR> -> Pair<'TR>
Elements
Signature: IEnumerable<'T>
Equals(other)
Signature: other:obj -> bool
Modifiers: abstract
Equals(other)
Signature: other:Pair<'T> -> bool
Modifiers: abstract
GetEnumerator()
Signature: unit -> IEnumerator<'T>
Modifiers: abstract
GetHashCode()
Signature: unit -> int
Modifiers: abstract
[()]
Signature: unit -> int
Swapped
Signature: Pair<'T>
ToString()
Signature: unit -> string
Modifiers: abstract
Fork me on GitHub