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<
If you are fine with changing the input list here is one more way to achieve it.
strings.replaceAll(String::toLowerCase)