Warning: session_start(): open(/var/lib/php/sessions/sess_4deaua77m7rqvvlkvcfl6iidcu, 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 L minus(Collection a, O... b) { Set set = asSet(b); new L l; for (O s : unnull(a)) if (!set.contains(s)) l.add(s); ret l; } static BigInteger minus(BigInteger a, BigInteger b) { ret a.subtract(b); } ifclass Complex static Complex minus(Complex c) { ret c == null ?: complex(-c.re(), -c.im()); } endif meta-for int also as double { static int minus(int a, int b) { ret a-b; } }