* 获取指定位的值 * @param index 位索引 * @returns 如果位被设置为1则返回true,否则返回false
(index: number)
| 58 | * @returns 如果位被设置为1则返回true,否则返回false |
| 59 | */ |
| 60 | public get(index: number): boolean { |
| 61 | return BitMask64Utils.getBit(this._value, index); |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * 检查是否包含另一个位集合的所有位 |
no test coverage detected