What\'s the most efficient way to lower case every element of a List or Set?
My idea for a List:
final List strings = new ArrayList<
Yet another solution, but with Java 8 and above:
List result = strings.stream() .map(String::toLowerCase) .collect(Collectors.toList());