We all love do, and I was curious if perhaps this sort of alternate syntax would theoretically be useful outside of the monad world. If so, what other sorts of computations would it simplify? Would it make sense to have something equivalent for Applicative, for example?
|
|
|
It might help to consider, regarding
Writing such a function as a single expression generally requires either multiple nested lambdas, or the kind of absurd obfuscating nonsense that gives point-free style a bad name. A Normally you'd probably extract such subexpressions and put them in a Besides the scoping/binding stuff, the other thing a In the easy case, where the expressions all have the same type, putting them in a list and then folding it works well--building strings in this manner using In fact, the same general principle is true of the "idiom bracket" notation from the
Although it's not too hard to make many of these into either a single type or a full |
|||
|
|
|
My sense is that many Haskell programmers don't love Even for monadic code, many people prefer using I tend to write my first drafts using For arrows, on the other hand, I can't imagine not using |
||||
|
|
The When it's obvious what operator is being used to roll everything up, it's nice to omit and leverage the "newline" operator. Programmable newline would be nice way to approach makings list, applicative chains, &c. To make lists, you'd also need a "programmable outdent". Really, you could just take the three meaningful bits and make them all overloadable:
Then you probably shouldn't call it |
|||
|
|
|
Idiom brackets form one nice way to think about Applicatives, but they aren't the only possible such syntax extension. Philippa Cowderoy posted a proposal for an "Applicative do" notation to the haskell-cafe a while back with the observation that any function that looks kind of like:
where the variables bound by This is useful in the cases where the order of applicative effects differs from the "natural order" and assuming the existence of 'ado' in Haskell would just desugar to:
However, the lexical scoping rules are a bit disconcerting. |
|||
|
|
|
I don't see how to generalize these kinds of special syntaxes, but maybe I haven't given it enough thought. |
|||
|
|
|
There's a generalization of monads that fits with
This is a "state monad" that stores first a number, and then a string. |
||||
|
|
|
There is a preprocessor in GHC to do just that for Arrows: http://www.haskell.org/ghc/docs/6.12.2/html/users_guide/arrow-notation.html |
|||
|
|
|
BlazeHtml is using So a similar notation for If you look at the code of my game "Defend The King", then I also do a lot of |
|||
|
|