This operator is left associative, which means that w / f / g is interpreted as meaning (w / f) / g.
i1 : {1,2,3} / (i -> i+1) / (j -> j^2) o1 = {4, 9, 16} o1 : List
See also apply and Function \ List.