Mordvin Letters (Preliminary) (#2088)

This commit is contained in:
Logo 2023-11-13 07:15:11 +08:00 committed by GitHub
parent dba8fbfe90
commit 013ca72a71
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 581 additions and 284 deletions

View file

@ -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;