For a stream that contains no even numbers, what does Collectors.partitioningBy produce?Map<Boolean,List<Integer>> m = Stream.of(1, 3, 5) .collect(Collectors.partitioningBy(x -> x % 2 == 0));