static void add(BitSet bs, int i) {
bs.set(i);
}
static bool add(Collection c, A a) {
ret c != null && c.add(a);
}
ifndef Android
static void add(Container c, Component x) {
addToContainer(c, x);
}
endifndef
static long add(AtomicLong l, long b) {
ret l.addAndGet(b);
}