panic method
Implementation
T panic(bool Function(T it) predicate) {
if (this == null) {
throw NullException();
}
if (!predicate(this)) {
throw Panic();
}
return this;
}
T panic(bool Function(T it) predicate) {
if (this == null) {
throw NullException();
}
if (!predicate(this)) {
throw Panic();
}
return this;
}