]>
git.saurik.com Git - apple/icu.git/blob - icuSources/test/usetperf/bitset.h
8b7122dfdec78b4f0b7e37d79a4def7d8b6ae0e9
2 **********************************************************************
3 * Copyright (c) 2002-2004, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 **********************************************************************
6 * 2002-09-20 aliu Created.
11 #include "unicode/utypes.h"
14 * A simple, limited clone of the java.util.BitSet.
21 void ensureCapacity(uint32_t minLen
);
28 UBool
get(int32_t bitIndex
) const;
30 void set(int32_t bitIndex
);
35 // TODO add other methods as needed.