func_apl.vh (240B)
1 2 3 4 5 6 7 8 9 10 11
map (1 +) list -- The same as (map) ((1) +) (list) -- which is the same as: (((map) ((1) +)) (list)) -- because of currying, `a b c` <=> `((a b) c)` -- Function application has highest binding, so: a b c + 3 -- is the same as (a b c) + 3