-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
36 lines (33 loc) · 984 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* @flow */
import hashInteger from "../../hash-functions/integer";
import type Backing from "backing";
import type {Realm} from "../..";
export function make ({PrimitiveType}: Realm): PrimitiveType<uint32> {
return new PrimitiveType({
name: 'Uint32',
byteAlignment: 4,
byteLength: 4,
cast (input: any): uint32 {
return input >>> 0;
},
accepts (input: any): boolean {
return typeof input === 'number' && !isNaN(input) && input >= 0 && input <= 4294967295 && input === Math.floor(input);
},
store (backing: Backing, address: float64, value: number): void {
backing.setUint32(address, value);
},
load (backing: Backing, address: float64): uint32 {
return backing.getUint32(address);
},
emptyValue (): uint32 {
return 0;
},
randomValue (): uint32 {
return Math.floor(Math.random() * Math.pow(2, 32));
},
hashValue: hashInteger,
flowType () {
return `uint32`;
}
});
}