Warning: session_start(): open(/var/lib/php/sessions/sess_0lv7bqb97lo92hcjmc6sbn1npj, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
// returns true if anything was removed
static bool lambdaMapLike removeElementsThat(IPred pred, Cl c) {
if (c == null || pred == null) ret;
Iterator it = iterator(c);
bool change;
while (it.hasNext())
if (pred.get(it.next())) {
it.remove();
set change;
}
ret change;
}
static bool removeElementsThat(Cl c, IPred pred) {
ret removeElementsThat(pred, c);
}