判断列表里面的元素是否都满足条件
bool every<T>(Iterable<T> list, bool Function(T) call) { for (var e in list) { if (!call.call(e)) { return false; } } return true; }