Which behavior accurately describes thenComparing when the primary comparator reports two elements as equal but they are distinct objects?
Comparator<String> byLen = Comparator.comparingInt(String::length);
Comparator<String> c = byLen.thenComparing(s -> s);