Please enable JavaScript to view the comments powered by Disqus.Untitled
Search

Search
Method Ref Type
Example
Lambda Equivalent
Instant.now()::isAfter
Instant then = Instant.now();t-> then.isAfter(t);
String::toLowerCase
str -> str.toLowerCase()
TreeMap<K, V)::new
() -> new TreeMap<K, V>
int[]::new
len -> new int[len]