java 8 anymatch deux listes

boolean isAnyMatch = list2.stream().anyMatch(list1::contains);
Handsome Hawk