static boolean nempty(Collection c) { ret !empty(c); } static boolean nempty(CharSequence s) { ret !empty(s); } static boolean nempty(O[] o) { ret !empty(o); } static boolean nempty(byte[] o) { ret !empty(o); } static boolean nempty(int[] o) { ret !empty(o); } static boolean nempty(Map m) { ret !empty(m); } static boolean nempty(Iterator i) { ret i != null && i.hasNext(); } ifndef empty_noGeneric sbool nempty(O o) { ret !empty(o); } endifndef ifclass IntRange sbool nempty(IntRange r) { ret !empty(r); } endif ifclass IntBuffer sbool nempty(IntBuffer b) { ret b != null && !b.isEmpty(); } endif ifclass LongBuffer sbool nempty(LongBuffer b) { ret b != null && !b.isEmpty(); } endif ifclass CloseablesHolder sbool nempty(CloseablesHolder ch) { ret ch != null && !empty(ch.closeables); } endif