l van Veen
but it seems to work only on self defined functions and not on build
in
Make sure you are using the definition in the reply from Andrew Steinacher.
Here is a very simple example of using the "magic bullet". Pick a function that does not have an operator form (most likely because it is varargs). To use it in postfix form
Range[10] // Take[#, {3, 5}] &
(* {3, 4, 5} *)
Using the "magic bullet" is a lot cleaner
Range[10] // Take[\[Bullet], {3, 5}]
(* {3, 4, 5} *)
There are a lot of more complex examples in Alan's notebook.