Aardvark.Base


Quad<'T>

A quadruple is a structure containing three elements of the same type, that can be accessed at index 0, 1, 2, and 3, or using the fields E0, E1, E2, and E3.

Constructors

ConstructorDescription
new(e)
Signature: e:'T -> unit
new(e0, e1, e2, e3)
Signature: (e0:'T * e1:'T * e2:'T * e3:'T) -> unit
new(p0, p1)
Signature: (p0:Pair<'T> * p1:Pair<'T>) -> unit
new(e0, t)
Signature: (e0:'T * t:Triple<'T>) -> unit
new(t, e3)
Signature: (t:Triple<'T> * e3:'T) -> unit

Instance members

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