Deedle


Pair

Namespace: Deedle

Module with helper functions for extracting values from hierarchical tuples

Functions and values

Function or valueDescription
flatten3 (v1, arg2)
Signature: (v1:'?495181 * ('?495182 * '?495183)) -> '?495181 * '?495182 * '?495183
Type parameters: '?495181, '?495182, '?495183

Flatten a two-level nested tuple into a flat tuple of 3 elements

flatten4 (v1, arg2)
Signature: (v1:'?495185 * ('?495186 * ('?495187 * '?495188))) -> '?495185 * '?495186 * '?495187 * '?495188
Type parameters: '?495185, '?495186, '?495187, '?495188

Flatten a two-level nested tuple into a flat tuple of 4 elements

get1And2Of3 (v1, v2, arg3)
Signature: (v1:'?495149 * v2:'?495150 * '?495151) -> '?495149 * '?495150
Type parameters: '?495149, '?495150, '?495151

Returns the first and the second value of a three-level hierarchical tuple

get1And3Of3 (v1, arg2, v2)
Signature: (v1:'?495157 * '?495158 * v2:'?495159) -> '?495157 * '?495159
Type parameters: '?495157, '?495158, '?495159

Returns the first and the third value of a three-level hierarchical tuple

get1Of2 (v, arg2)
Signature: (v:'?495131 * '?495132) -> '?495131
Type parameters: '?495131, '?495132

Returns the first value of a two-level hierarchical tuple

get1Of3 (v, arg2, arg3)
Signature: (v:'?495137 * '?495138 * '?495139) -> '?495137
Type parameters: '?495137, '?495138, '?495139

Returns the first value of a three-level hierarchical tuple

get1Of4 (v, arg2, arg3, arg4)
Signature: (v:'?495161 * '?495162 * '?495163 * '?495164) -> '?495161
Type parameters: '?495161, '?495162, '?495163, '?495164

Returns the first value of a four-level hierarchical tuple

get2And3Of3 (arg1, v1, v2)
Signature: ('?495153 * v1:'?495154 * v2:'?495155) -> '?495154 * '?495155
Type parameters: '?495153, '?495154, '?495155

Returns the second and the third value of a three-level hierarchical tuple

get2Of2 (arg1, v)
Signature: ('?495134 * v:'?495135) -> '?495135
Type parameters: '?495134, '?495135

Returns the second value of a two-level hierarchical tuple

get2Of3 (arg1, v, arg3)
Signature: ('?495141 * v:'?495142 * '?495143) -> '?495142
Type parameters: '?495141, '?495142, '?495143

Returns the second value of a three-level hierarchical tuple

get2Of4 (arg1, v, arg3, arg4)
Signature: ('?495166 * v:'?495167 * '?495168 * '?495169) -> '?495167
Type parameters: '?495166, '?495167, '?495168, '?495169

Returns the second value of a four-level hierarchical tuple

get3Of3 (arg1, arg2, v)
Signature: ('?495145 * '?495146 * v:'?495147) -> '?495147
Type parameters: '?495145, '?495146, '?495147

Returns the third value of a three-level hierarchical tuple

get3Of4 (arg1, arg2, v, arg4)
Signature: ('?495171 * '?495172 * v:'?495173 * '?495174) -> '?495173
Type parameters: '?495171, '?495172, '?495173, '?495174

Returns the third value of a four-level hierarchical tuple

get4Of4 (arg1, arg2, arg3, v)
Signature: ('?495176 * '?495177 * '?495178 * v:'?495179) -> '?495179
Type parameters: '?495176, '?495177, '?495178, '?495179

Returns the fourth value of a four-level hierarchical tuple

Fork me on GitHub