Viewing profile — grepgrep
grepgrep
HN member- Joined
- Mon, Jan 16, 2012, 5:05 PM UTC
- HN karma
- 3
- Public activity
- 3 items
- HN profile
- View on Hacker News ↗
About grepgrep
No profile information was provided.
Recent public activity
-
comment
Comment #3471562
I took a look at lombok and it's pretty obvious from the way cleanup method names can be passed as strings that's it's using reflection. It's a bit of a nasty hack, but it works.
-
comment
Comment #3471538
I think the only thing that was added to the API was a single interface called Closeable. Adding 1 interface to a library is hardly bloat. The change is essentially language suppor…
-
comment
Comment #3471481
Rough example below, partially taken from a book I have on Scala. //define it like this: def using[T S) = { val result = operation(obj) obj.close() result } //use it like this: val…