Warning: session_start(): open(/var/lib/php/sessions/sess_p9hujjbsk44cli2qt7hcj5e3hb, 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
static Cl lambdaMapLike filterCollectionInPlace(IPred pred, Cl l) {
if (l == null) ret l;
var it = l.iterator();
while (it.hasNext())
if (!pred.get(it.next()))
it.remove();
ret l;
}
static Cl lambdaMapLike filterCollectionInPlace(Cl l, IPred pred) {
ret filterCollectionInPlace(pred, l);
}