判断集合中的元素是否存在
bool some<T>(Iterable<T> list, bool Function(T) call) { return find<T>(list, call) != null; }