Interface SaHasElementFunction

All Superinterfaces:
BiFunction<List<String>,String,Boolean>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface SaHasElementFunction extends BiFunction<List<String>,String,Boolean>
函数式接口:判断集合中是否包含指定元素(模糊匹配)

参数:集合、元素

返回:是否包含

Since:
1.35.0
Author:
click33