Mordvin Letters (Preliminary) (#2088)
This commit is contained in:
parent
dba8fbfe90
commit
013ca72a71
13 changed files with 581 additions and 284 deletions
|
@ -4,6 +4,9 @@ export function maskBit(x, y) {
|
|||
export function maskBits(x, y) {
|
||||
return x & y;
|
||||
}
|
||||
export function maskOffBits(x, y) {
|
||||
return x & ~y;
|
||||
}
|
||||
export function bitOr(...xs) {
|
||||
let x = 0;
|
||||
for (const a of xs) x |= a;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue