I need a map function. Is there something like this in Java already?
(For those who wonder: I of course know how to implement this trivial function myself...)
|
|
There is no notion of a function in the JDK as of java 6. Guava has a Function interface though and the Example:
Output:
|
|||||||
|
|
There is a wonderful library called Functional Java which handles many of the things you'd want Java to have but it doesn't. Then again, there's also this wonderful language Scala which does everything Java should have done but doesn't while still being compatible with anything written for the JVM. |
|||||||||||||
|
|
map(function,iterable) i think this style of coding is with functional style of language, languages that support passing function as a argument. So this is possibly not in java. |
|||||||
|
|
This is another functional lib with which you may use map: http://code.google.com/p/totallylazy/
|
|||
|
|