all method

bool all(
  1. TFuncPredicate1<T> funcPredicate
)

Implementation

bool all(TFuncPredicate1<T> funcPredicate) {
	return !this.any((x) => !funcPredicate(x));
}