Skip to main content
edited body
Source Link
Steven Evers
  • 28.2k
  • 10
  • 78
  • 161

In your functional example we don't see how the squares-of and take functions are implemented. I'm not a Java expert, but I'm pretty sure we could write those functions to enable a statement like this...

squares-ofsquares_of(integers).take(25);

which is not so very different.

In your functional example we don't see how the squares-of and take functions are implemented. I'm not a Java expert, but I'm pretty sure we could write those functions to enable a statement like this...

squares-of(integers).take(25);

which is not so very different.

In your functional example we don't see how the squares-of and take functions are implemented. I'm not a Java expert, but I'm pretty sure we could write those functions to enable a statement like this...

squares_of(integers).take(25);

which is not so very different.

Source Link
Martin
  • 521
  • 2
  • 10

In your functional example we don't see how the squares-of and take functions are implemented. I'm not a Java expert, but I'm pretty sure we could write those functions to enable a statement like this...

squares-of(integers).take(25);

which is not so very different.