@@ -23,6 +23,21 @@ Roaring Bitmap 32 documentation at: https://salvatorepreviti.github.io/roaring-n
23
23
24
24
import roaring = require( "./" ) ;
25
25
26
+ export interface ReadonlySetLike < T > {
27
+ /**
28
+ * Despite its name, returns an iterator of the values in the set-like.
29
+ */
30
+ keys ( ) : Iterator < T > ;
31
+ /**
32
+ * @returns a boolean indicating whether an element with the specified value exists in the set-like or not.
33
+ */
34
+ has ( value : T ) : boolean ;
35
+ /**
36
+ * @returns the number of (unique) elements in the set-like.
37
+ */
38
+ readonly size : number ;
39
+ }
40
+
26
41
/** Gets the approximate memory allocated by the roaring bitmap library. */
27
42
export function getRoaringUsedMemory ( ) : number ;
28
43
@@ -339,7 +354,8 @@ export enum FrozenViewFormat {
339
354
340
355
export type FrozenViewFormatType = FrozenViewFormat | "unsafe_frozen_croaring" | "unsafe_frozen_portable" ;
341
356
342
- export interface ReadonlyRoaringBitmap32 extends ReadonlySet < number > {
357
+ export interface ReadonlyRoaringBitmap32
358
+ extends Omit < ReadonlySet < number > , "forEach" | "keys" | "values" | "entries" | typeof Symbol . iterator > {
343
359
/**
344
360
* Property. Gets the number of items in the set (cardinality).
345
361
*
@@ -442,7 +458,7 @@ export interface ReadonlyRoaringBitmap32 extends ReadonlySet<number> {
442
458
* @returns {RoaringBitmap32Iterator } A new iterator
443
459
* @memberof ReadonlyRoaringBitmap32
444
460
*/
445
- entries ( ) : IterableIterator < [ number , number ] > ;
461
+ entries ( ) : ReturnType < Set < number > [ "entries" ] > ;
446
462
447
463
/**
448
464
* Executes a function for each value in the set, in ascending order.
@@ -1262,14 +1278,14 @@ export interface ReadonlyRoaringBitmap32 extends ReadonlySet<number> {
1262
1278
isDisjointFrom ( other : ReadonlySetLike < unknown > | ReadonlyRoaringBitmap32 ) : boolean ;
1263
1279
}
1264
1280
1265
- export interface RoaringBitmap32 extends ReadonlyRoaringBitmap32 , Set < number > {
1281
+ export interface RoaringBitmap32 extends ReadonlyRoaringBitmap32 {
1266
1282
/**
1267
- * Property: The version of the CRoaring libary as a string.
1283
+ * Property: The version of the CRoaring library as a string.
1268
1284
* Example: "0.9.2"
1269
1285
*
1270
1286
* @export
1271
1287
* @constant
1272
- * @type {string } The version of the CRoaring libary as a string. Example: "0.9.2"
1288
+ * @type {string } The version of the CRoaring library as a string. Example: "0.9.2"
1273
1289
* @memberof RoaringBitmap32
1274
1290
*/
1275
1291
get CRoaringVersion ( ) : string ;
@@ -1681,7 +1697,7 @@ export interface RoaringBitmap32 extends ReadonlyRoaringBitmap32, Set<number> {
1681
1697
/**
1682
1698
* @returns a new RoaringBitmap32 containing all the elements in this Set which are not also in the argument.
1683
1699
*/
1684
- difference < U > ( other : ReadonlyRoaringBitmap32 ) : RoaringBitmap32 ;
1700
+ difference ( other : ReadonlyRoaringBitmap32 ) : RoaringBitmap32 ;
1685
1701
1686
1702
/**
1687
1703
* Warning: this method is just for compatibility with Set and returns a Set, so it can be very slow for big bitmaps.
@@ -1849,12 +1865,12 @@ export class RoaringBitmap32 {
1849
1865
) : boolean ;
1850
1866
1851
1867
/**
1852
- * Property: The version of the CRoaring libary as a string.
1868
+ * Property: The version of the CRoaring library as a string.
1853
1869
* Example: "0.4.0"
1854
1870
*
1855
1871
* @export
1856
1872
* @constant
1857
- * @type {string } The version of the CRoaring libary as a string. Example: "0.2.42"
1873
+ * @type {string } The version of the CRoaring library as a string. Example: "0.2.42"
1858
1874
*/
1859
1875
static get CRoaringVersion ( ) : string ;
1860
1876
@@ -2291,7 +2307,7 @@ export class RoaringBitmap32 {
2291
2307
/**
2292
2308
* @returns a new RoaringBitmap32 containing all the elements in this Set which are not also in the argument.
2293
2309
*/
2294
- difference < U > ( other : ReadonlyRoaringBitmap32 ) : RoaringBitmap32 ;
2310
+ difference ( other : ReadonlyRoaringBitmap32 ) : RoaringBitmap32 ;
2295
2311
2296
2312
/**
2297
2313
* Warning: this method is just for compatibility with Set and returns a Set, so it can be very slow for big bitmaps.
@@ -2545,12 +2561,12 @@ export interface RoaringBitmap32Statistics {
2545
2561
}
2546
2562
2547
2563
/**
2548
- * Property: The version of the CRoaring libary as a string.
2564
+ * Property: The version of the CRoaring library as a string.
2549
2565
* Example: "0.4.0"
2550
2566
*
2551
2567
* @export
2552
2568
* @constant
2553
- * @type {string } The version of the CRoaring libary as a string. Example: "0.2.42"
2569
+ * @type {string } The version of the CRoaring library as a string. Example: "0.2.42"
2554
2570
* @memberof RoaringModule
2555
2571
*/
2556
2572
export const CRoaringVersion : string ;
0 commit comments