isAlphaNum :: Char -> Bool
isAlphaNum = (||) <$> isAlpha <*> isNum
I can see that it works, but I don't understand where the instances of Applicative (or Functor) come from.
Is it common to go to such effort to make functions point-free?
I can see that it works, but I don't understand where the instances of Applicative (or Functor) come from. Is it common to go to such effort to make functions point-free? |
|||
|
This is the
This function is perhaps better known as the S combinator. The
I wouldn't say it's common to do this for the sake of making functions point-free, but in some cases it can actually improve clarity once you're used to the idiom. The example you gave, for instance, I can read very easily as meaning "is a character a letter or number". |
|||||
|
|
|
You get instances of what are called static arrows (see "Applicative Programming with Effects" by Conor McBride et al.) for free from the When you combine any of these, say apply a function
Hence, as you point out, this makes your example equivalent to
In my opinion, such effort is not always necessary, and it would look nicer if Haskell had better syntactic support for applicatives (maybe something like 2-level languages). |
|||
|
|
|
It should be noted that you get a similar effect by using the lift functions, e.g.:
Or, using the monad instance of ((->) r) instead of the applicative one:
[Digression] Now that you know how to distribute one argument to two intermediate functions and the result to a binary function, there is the somehow related case that you want to distribute two arguments to one intermediate function and the results to a binary function:
This pattern is e.g. often used for the |
|||||||
|
isAlphaNum==(\c-> ((||).isAlpha) c (isNum c))==(\c-> isAlpha c || isNum c)(... just a sidenote). – Will Ness Feb 7 at 8:39