Functional Java 2.19

New for Functional Java 2.19:

  • Comonadic operations on Stream, Tree and other data types
  • Database monad (java.sql.Connection as a functor)
  • Natural Number data type
  • The Constant Arrow ($)
  • Immutable Tree Map
  • A parallel quick-sort using Functional Java actors
  • much more

3 Responses to “Functional Java 2.19”

  1. Scala, Scala, Scala, em Java « Codemountain Says:

    [...] API Functional Java vem sendo criada por Tony Morris, e pelo pouco que pude fuçar, está ficando bem [...]

  2. Josh Suereth Says:

    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!

  3. Tony Morris Says:

    Hi Josh,
    It starts here (Scala):
    case class Connector[+A](f: Connection => A) { def map, flatMap …

Leave a Reply