]>
git.saurik.com Git - apple/icu.git/blob - icuSources/test/perf/usetperf/bitset.h
2 ***********************************************************************
3 * © 2016 and later: Unicode, Inc. and others.
4 * License & terms of use: http://www.unicode.org/copyright.html#License
5 ***********************************************************************
6 ***********************************************************************
7 * Copyright (c) 2002-2005, International Business Machines
8 * Corporation and others. All Rights Reserved.
9 ***********************************************************************
10 * 2002-09-20 aliu Created.
15 #include "unicode/utypes.h"
18 * A simple, limited clone of the java.util.BitSet.
25 void ensureCapacity(uint32_t minLen
);
32 UBool
get(int32_t bitIndex
) const;
34 void set(int32_t bitIndex
);
39 // TODO add other methods as needed.