MCPcopy Create free account
hub / github.com/doldecomp/mkdd / test

Method test

include/std/bitset.h:50–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

48
49 template <size_t N>
50 bool __bitset_base<N>::test(size_t pos) const
51 {
52 size_t i = pos / (sizeof(size_t) * 8);
53 size_t mask = 1 << (pos % (sizeof(size_t) * 8));
54 return data[i] & mask;
55 }
56
57 template <size_t N>
58 void __bitset_base<N>::set(size_t pos, bool val)

Callers 3

isDisposable_Method · 0.45
releaseAllBank_Method · 0.45
loadWaveArcMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected