map<L1, M1, R1> method
Creates a Triple which left, middle and right values have been mapped using left
, middle
and right
.
Implementation
Triple<L1, M1, R1> map<L1, M1, R1>(Mapper<L, L1> left, Mapper<M, M1> middle, Mapper<R, R1> right) => Triple(left(this.left), middle(this.middle), right(this.right));