map<R1, R2, R3, R4> method
Creates a Quad which first, second, third and fourth values have been mapped using first
, second
, third
and fourth
.
Implementation
Quad<R1, R2, R3, R4> map<R1, R2, R3, R4>(Mapper<T1, R1> first, Mapper<T2, R2> second, Mapper<T3, R3> third, Mapper<T4, R4> fourth)
=> Quad(first(this.first), second(this.second), third(this.third), fourth(this.fourth));