Kengo's blog

Technical articles about original projects, JVM, Static Analysis and TypeScript.

Entries from 2012-06-23 to 1 day

Why I dislike dislike

I think all of us has a original world, and visiting other world is valuable and interesting. Dislike other person is same to stop visiting other world, so I think it isn't productive and constructive. Disliking other culture and genre is …

Combinators in Guava libraries

Do you want to use combinators in Java code? Guava libraries provide them for you. Iterators.filter(unfiltered, predicate); Iterators.transform(fromIterator, function); Maps.filterKeys(unfiltered, keyPredicate); Maps.filterValues(unfiltere…