-
Notifications
You must be signed in to change notification settings - Fork 30
/
bitset.d.ts
500 lines (460 loc) · 12.5 KB
/
bitset.d.ts
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
export declare interface ReadOnlyBitSet
{
/**
* Creates the bitwise AND of two sets.
*
* Ex:
* bs1 = new BitSet(10);
* bs2 = new BitSet(10);
*
* res = bs1.and(bs2);
*
* @param {ReadOnlyBitSet} other A bitset object
* @returns {BitSet} A new BitSet object, containing the bitwise AND of this and other
*/
and(other: ReadOnlyBitSet): BitSet;
/**
* Creates the bitwise OR of two sets.
*
* Ex:
* bs1 = new BitSet(10);
* bs2 = new BitSet(10);
*
* res = bs1.or(bs2);
*
* @param {ReadOnlyBitSet} other A bitset object
* @returns {BitSet} A new BitSet object, containing the bitwise OR of this and other
*/
or(other: ReadOnlyBitSet): BitSet;
/**
* Creates the bitwise AND NOT (not confuse with NAND!) of two sets.
*
* Ex:
* bs1 = new BitSet(10);
* bs2 = new BitSet(10);
*
* res = bs1.notAnd(bs2);
*
* @param {ReadOnlyBitSet} other A bitset object
* @returns {BitSet} A new BitSet object, containing the bitwise AND NOT of this and other
*/
andNot(other: ReadOnlyBitSet): BitSet;
/**
* Creates the bitwise NOT of a set.
*
* Ex:
* bs1 = new BitSet(10);
*
* res = bs1.not();
*
* @returns {BitSet} A new BitSet object, containing the bitwise NOT of this
*/
not(): BitSet;
/**
* Creates the bitwise XOR of two sets.
*
* Ex:
* bs1 = new BitSet(10);
* bs2 = new BitSet(10);
*
* res = bs1.xor(bs2);
*
* @param {ReadOnlyBitSet} other A bitset object
* @returns {BitSet} A new BitSet object, containing the bitwise XOR of this and other
*/
xor(other: ReadOnlyBitSet): BitSet;
/**
* Compares two BitSet objects
*
* Ex:
* bs1 = new BitSet(10);
* bs2 = new BitSet(10);
*
* bs1.equals(bs2) ? 'yes' : 'no'
*
* @param {ReadOnlyBitSet} other A bitset object
* @returns {boolean} Whether the two BitSets have the same bits set (valid for indefinite sets as well)
*/
equals(other: ReadOnlyBitSet): boolean;
/**
* Clones the actual object
*
* Ex:
* bs1 = new BitSet(10);
*
* bs2 = bs1.clone();
*
* @returns {ReadOnlyBitSet} A new BitSet object, containing a copy of the actual object
*/
clone(): BitSet;
/**
* Check if the BitSet is empty, means all bits are unset
*
* Ex:
* bs1 = new BitSet(10);
*
* bs1.isEmpty() ? 'yes' : 'no'
*
* @returns {boolean} Whether the bitset is empty
*/
isEmpty(): boolean;
/**
* Overrides the toString method to get a binary representation of the BitSet
*
* @param {number=} base
* @returns string A binary string
*/
toString(base?: number): string;
/**
* Gets a list of set bits
*
* @returns {Array}
*/
toArray(): Array<number>;
/**
* Calculates the number of bits set
*
* Ex:
* bs1 = new BitSet(10);
*
* num = bs1.cardinality();
*
* @returns {number} The number of bits set
*/
cardinality(): number;
/**
* Calculates the Most Significant Bit / log base two
*
* Ex:
* bs1 = new BitSet(10);
*
* logbase2 = bs1.msb();
*
* truncatedTwo = Math.pow(2, logbase2); // May overflow!
*
* @returns {number} The index of the highest bit set
*/
msb(): number;
/**
* Calculates the Least Significant Bit
*
* Ex:
* bs1 = new BitSet(10);
*
* lsb = bs1.lsb();
*
* @returns {number} The index of the lowest bit set
*/
lsb(): number;
/**
* Calculates the number of trailing zeros
*
* Ex:
* bs1 = new BitSet(10);
*
* ntz = bs1.ntz();
*
* @returns {number} The index of the lowest bit set
*/
ntz(): number;
/**
* Get a single bit flag of a certain bit position
*
* Ex:
* bs1 = new BitSet();
* isValid = bs1.get(12);
*
* @param {number} index the index to be fetched
* @returns {number|null} The binary flag
*/
get(index: number): number;
/**
* Gets an entire range as a new bitset object
*
* Ex:
* bs1 = new BitSet();
*
* var res = bs1.slice(4, 8);
*
* @param {number=} fromIndex The start index of the range to be get
* @param {number=} toIndex The end index of the range to be get
* @returns {BitSet|null} A new smaller bitset object, containing the extracted range
*/
slice(fromIndex?: number, toIndex?: number): BitSet;
/**
* Iterates over the set bits
*/
[Symbol.iterator](): Iterator<number>;
}
export declare var ReadOnlyBitSet: ReadOnlyBitSet;
export declare class BitSet implements ReadOnlyBitSet
{
/**
* @constructor create a new BitSet
* @param {String | number | BitSet | Array<number> | Uint8Array | ReadOnlyBitSet} input
*
* Strings
*
* - Binary strings "010101"
* - Binary strings with prefix "0b100101"
* - Hexadecimal strings with prefix "0xaffe"
*
* Arrays
* - The values of the array are the indizes to be set to 1
*
* Uint8Array
* - A binary representation in 8 bit form
*
* Number
* - A binary value
*
* BitSet | ReadOnlyBitSet
* - A BitSet object, which is cloned
*
*/
constructor(input?: String | number | BitSet | Array<number> | Uint8Array | ReadOnlyBitSet);
public static fromBinaryString(str: string): BitSet;
public static fromHexString(str: string): BitSet;
public static Random(n: number): BitSet;
/**
* Creates the bitwise AND of two sets.
*
* Ex:
* bs1 = new BitSet(10);
* bs2 = new BitSet(10);
*
* res = bs1.and(bs2);
*
* @param {ReadOnlyBitSet} other A bitset object
* @returns {BitSet} A new BitSet object, containing the bitwise AND of this and other
*/
and(other: ReadOnlyBitSet): BitSet;
/**
* Creates the bitwise OR of two sets.
*
* Ex:
* bs1 = new BitSet(10);
* bs2 = new BitSet(10);
*
* res = bs1.or(bs2);
*
* @param {ReadOnlyBitSet} other A bitset object
* @returns {BitSet} A new BitSet object, containing the bitwise OR of this and other
*/
or(other: ReadOnlyBitSet): BitSet;
/**
* Creates the bitwise AND NOT (not confuse with NAND!) of two sets.
*
* Ex:
* bs1 = new BitSet(10);
* bs2 = new BitSet(10);
*
* res = bs1.notAnd(bs2);
*
* @param {ReadOnlyBitSet} other A bitset object
* @returns {BitSet} A new BitSet object, containing the bitwise AND NOT of this and other
*/
andNot(other: ReadOnlyBitSet): BitSet;
/**
* Creates the bitwise NOT of a set.
*
* Ex:
* bs1 = new BitSet(10);
*
* res = bs1.not();
*
* @returns {BitSet} A new BitSet object, containing the bitwise NOT of this
*/
not(): BitSet;
/**
* Creates the bitwise XOR of two sets.
*
* Ex:
* bs1 = new BitSet(10);
* bs2 = new BitSet(10);
*
* res = bs1.xor(bs2);
*
* @param {ReadOnlyBitSet} other A bitset object
* @returns {BitSet} A new BitSet object, containing the bitwise XOR of this and other
*/
xor(other: ReadOnlyBitSet): BitSet;
/**
* Compares two BitSet objects
*
* Ex:
* bs1 = new BitSet(10);
* bs2 = new BitSet(10);
*
* bs1.equals(bs2) ? 'yes' : 'no'
*
* @param {ReadOnlyBitSet} other A bitset object
* @returns {boolean} Whether the two BitSets have the same bits set (valid for indefinite sets as well)
*/
equals(other: ReadOnlyBitSet): boolean;
/**
* Clones the actual object
*
* Ex:
* bs1 = new BitSet(10);
*
* bs2 = bs1.clone();
*
* @returns {ReadOnlyBitSet} A new BitSet object, containing a copy of the actual object
*/
clone(): BitSet;
/**
* Check if the BitSet is empty, means all bits are unset
*
* Ex:
* bs1 = new BitSet(10);
*
* bs1.isEmpty() ? 'yes' : 'no'
*
* @returns {boolean} Whether the bitset is empty
*/
isEmpty(): boolean;
/**
* Overrides the toString method to get a binary representation of the BitSet
*
* @param {number=} base
* @returns string A binary string
*/
toString(base?: number): string;
/**
* Gets a list of set bits
*
* @returns {Array}
*/
toArray(): Array<number>;
/**
* Calculates the number of bits set
*
* Ex:
* bs1 = new BitSet(10);
*
* num = bs1.cardinality();
*
* @returns {number} The number of bits set
*/
cardinality(): number;
/**
* Calculates the Most Significant Bit / log base two
*
* Ex:
* bs1 = new BitSet(10);
*
* logbase2 = bs1.msb();
*
* truncatedTwo = Math.pow(2, logbase2); // May overflow!
*
* @returns {number} The index of the highest bit set
*/
msb(): number;
/**
* Calculates the Least Significant Bit
*
* Ex:
* bs1 = new BitSet(10);
*
* lsb = bs1.lsb();
*
* @returns {number} The index of the lowest bit set
*/
lsb(): number;
/**
* Calculates the number of trailing zeros
*
* Ex:
* bs1 = new BitSet(10);
*
* ntz = bs1.ntz();
*
* @returns {number} The index of the lowest bit set
*/
ntz(): number;
/**
* Get a single bit flag of a certain bit position
*
* Ex:
* bs1 = new BitSet();
* isValid = bs1.get(12);
*
* @param {number} index the index to be fetched
* @returns {number|null} The binary flag
*/
get(index: number): number;
/**
* Gets an entire range as a new bitset object
*
* Ex:
* bs1 = new BitSet();
*
* var res = bs1.slice(4, 8);
*
* @param {number=} fromIndex The start index of the range to be get
* @param {number=} toIndex The end index of the range to be get
* @returns {BitSet|null} A new smaller bitset object, containing the extracted range
*/
slice(fromIndex?: number, toIndex?: number): BitSet;
/**
* Set a single bit flag
*
* Ex:
* bs1 = new BitSet(10);
*
* bs1.set(3, 1);
*
* @param {number} index The index of the bit to be set
* @param {number=} value Optional value that should be set on the index (0 or 1)
* @returns {BitSet} this
*/
public set(index?: number, value?: number): BitSet;
/**
* Set a range of bits
*
* Ex:
* bs1 = new BitSet();
*
* bs1.setRange(10, 15, 1);
*
* @param {number} fromIndex The start index of the range to be set
* @param {number} toIndex The end index of the range to be set
* @param {number=} value Optional value that should be set on the index (0 or 1)
* @returns {BitSet} this
*/
public setRange(fromIndex: number, toIndex: number, value?: number | string): BitSet;
/**
* Clear a range of bits by setting it to 0
*
* Ex:
* bs1 = new BitSet();
* bs1.clear(); // Clear entire set
* bs1.clear(5); // Clear single bit
* bs1.clar(3,10); // Clear a bit range
*
* @param {number=} fromIndex The start index of the range to be cleared
* @param {number=} toIndex The end index of the range to be cleared
* @returns {BitSet} this
*/
public clear(fromIndex?: number, toIndex?: number): void;
/**
* Flip/Invert a range of bits by setting
*
* Ex:
* bs1 = new BitSet();
* bs1.flip(); // Flip entire set
* bs1.flip(5); // Flip single bit
* bs1.flip(3,10); // Flip a bit range
*
* @param {number=} fromIndex The start index of the range to be flipped
* @param {number=} toIndex The end index of the range to be flipped
* @returns {BitSet} this
*/
public flip(fromIndex?: number, toIndex?: number): BitSet;
/**
* Iterates over the set bits
*/
[Symbol.iterator](): Iterator<number>;
}
export default BitSet;