> Just curious, the following is not allowed in Haskell either for the > same reason. > > applySkip i f ls = (take i) ls ++ $ f $ drop i ls This doesn't work for a slightly different reason; you can't use the infix operators beside each other ("++ $"), but if you could, it'd work!