···70 of the next function, and the last function returns the
71 final value.
72 */
73- pipe = val: functions:
74- let reverseApply = x: f: f x;
75- in builtins.foldl' reverseApply val functions;
7677 # note please don’t add a function like `compose = flip pipe`.
78 # This would confuse users, because the order of the functions
···70 of the next function, and the last function returns the
71 final value.
72 */
73+ pipe = builtins.foldl' (x: f: f x);
007475 # note please don’t add a function like `compose = flip pipe`.
76 # This would confuse users, because the order of the functions