javascript:(function(){
//Statements returning a non-undefined type, e.g. assignments
return null;
})();
Arrays.asList(values).stream();
Stream.of(values).map(String::valueOf).collect(Collectors.joining(",", "[", "]"));
companyList.name.sort() == ["First", "Second"].sort()
companyList.name as Set == ["First", "Second"] as Set // Only works if no duplicates
The Dangers of Correlating Subtype Polymorphism with Generic Polymorphism