static boolean isEmpty(Collection c) { ret c == null || c.isEmpty(); } 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.empty(); } endif