Camael's note
/
포스트
/
Effective Java: 43. Prefer method references to lambdas - 람다보다 method reference 를 사용하자
/
Untitled
/
Bound
Search
Duplicate
Share
Bound
Example
Instant.now()::isAfter
Lambda Equivalent
Instant then = Instant.now();
t-> then.isAfter(t);