Warning: session_start(): open(/var/lib/php/sessions/sess_3iu7v45uhupgjdrh8a96om3c89, 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 bool contains(Collection c, O o) { ret c != null && c.contains(o); } static bool contains(O[] x, O o) { if (x != null) for (O a : x) if (eq(a, o)) ret true; ret false; } static bool contains(S s, char c) { ret s != null && s.indexOf(c) >= 0; } static bool contains(S s, S b) { ret s != null && s.indexOf(b) >= 0; } static bool contains(BitSet bs, int i) { ret bs != null && bs.get(i); } ifclass Producer static bool contains(Producer p, A a) { if (p != null) while true { A x = p.next(); if (x == null) break; if (eq(x, a)) true; } false; } endif