Warning: session_start(): open(/var/lib/php/sessions/sess_65huk94ajotb2cdls5h2d180pn, 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 boolean isEmpty(Collection c) {
ret c == null || c.isEmpty();
}
sbool isEmpty(File f) {
ret f == null || f.length() == 0;
}
static boolean isEmpty(CharSequence s) {
ret s == null || s.length() == 0;
}
static bool isEmpty(O[] a) { ret a == null || a.length == 0; }
static bool isEmpty(byte[] a) { ret a == null || a.length == 0; }
static boolean isEmpty(Map map) {
ret map == null || map.isEmpty();
}
ifclass DoubleRange
sbool isEmpty(DoubleRange r) { ret r == null || r.isEmpty(); }
endif
ifclass AppendableChain
sbool isEmpty(AppendableChain c) { ret c == null; }
endif
sbool isEmpty(IntSize l) { ret l == null || l.size() == 0; }