RecordOfValuesExtension3<T1, T2, T3> extension
Extension on a Record with 3 positional values.
- on
-
- (T1, T2, T3)
Properties
- first → T1
-
Available on (T1, T2, T3), provided by the RecordOfValuesExtension3 extension
Returns the first element of this record.no setter - last → T3
-
Available on (T1, T2, T3), provided by the RecordOfValuesExtension3 extension
Returns the last element of this record.no setter - second → T2
-
Available on (T1, T2, T3), provided by the RecordOfValuesExtension3 extension
Returns the second element of this record.no setter - third → T3
-
Available on (T1, T2, T3), provided by the RecordOfValuesExtension3 extension
Returns the third element of this record.no setter
Methods
-
map<
R> (R callback(T1, T2, T3)) → R -
Available on (T1, T2, T3), provided by the RecordOfValuesExtension3 extension
Converts this Record with 3 positional values to a new typeR
using the providedcallback
with 3 positional arguments.