dmfs / jems

Java gems, a collection of Java utilities.
Apache License 2.0
5 stars 2 forks source link

Processed Function #297

Open dmfs opened 4 years ago

dmfs commented 4 years ago

A Function which applies a procedure to the a (often mutable) argument and returns the result. It provides a way to use mutable classes like builders in a single composed expression. Convenience ctors allow applying multiple procedures.

dmfs commented 4 years ago

To avoid side effects, the function should take a Generator and process and return the result of it.