Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Common name for reverse application function

Tags:

haskell

Does the function

(#) x f = f x

similar to the unix pipe, does this have a common name/symbol, other than # which I just made up?

like image 615
Clinton Avatar asked Sep 11 '26 08:09

Clinton


1 Answers

You can find it in the lens library as &.

like image 71
raymonad Avatar answered Sep 13 '26 20:09

raymonad