UNPKG
@mousepox/math
Version:
latest (1.7.3)
1.7.3
1.7.2
1.7.1
1.7.0
1.6.1
1.6.0
1.5.0
1.4.1
1.4.0
1.3.1
1.3.0
1.2.0
1.1.0
1.0.0
0.4.0
0.3.1
0.3.0
0.2.0
0.1.0
Math-related objects and utilities
@mousepox/math
/
dist
/
BitFlags.d.ts
8 lines
(7 loc)
•
166 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
declare
class
BitFlags
{
value
:
number
;
constructor
(
value
?:
number
);
clear
():
void
;
set
(
mask
:
number
):
void
;
has
(
mask
:
number
):
boolean
; }