Std.Function.pipe3
1 declaration
fn
pipe3: fn(A) -> B -> fn(B) -> C -> fn(C) -> D -> A -> DThis is a callable function.
What it does
Three functions in a row, reading left to right.
Read the signature
- The text after the name is the type checked by Pudu.
- Read arrows from left to right: inputs come first, and the final type is returned.
