Functional Java 2.19
New for Functional Java 2.19:
- Comonadic operations on
Stream,Treeand other data types - Database monad (
java.sql.Connectionas a functor) - Natural Number data type
- The Constant Arrow ($)
- Immutable Tree Map
- A parallel quick-sort using Functional Java actors
- much more
March 24th, 2009 at 8:49 am
[...] API Functional Java vem sendo criada por Tony Morris, e pelo pouco que pude fuçar, está ficando bem [...]
March 24th, 2009 at 9:55 pm
Hey, database monad! Someday you’ll have to teach me how to actually use one of those. I believe you tried a few times already on #scala, but I may be at the point where I could understand now. Glad to see you up and kicking!
March 25th, 2009 at 3:57 pm
Hi Josh,
It starts here (Scala):
case class Connector[+A](f: Connection => A) { def map, flatMap …