Skip to content

Commit fdaf825

Browse files
v2.4.0
1 parent f7fb706 commit fdaf825

File tree

7 files changed

+134
-89
lines changed

7 files changed

+134
-89
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- run: npm install --exact --no-audit --no-save
2020
env:
2121
ROARING_NODE_PRE_GYP: "false"
22+
- run: npx tsc --noEmit
2223
- run: npx eslint --no-error-on-unmatched-pattern --max-warnings=0
2324
- run: npx prettier --loglevel=warn --check .
2425
- run: node ./node-pre-gyp.js

.github/workflows/npm-publish.yml

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
node-version: "22.x"
3131
registry-url: "https://registry.npmjs.org"
3232
- run: npm install --exact --no-audit --no-save
33+
- run: npx tsc --noEmit
3334
- run: node ./scripts/test.js
3435
- run: node --expose-gc ./scripts/test-memory-leaks.js
3536
- run: npm publish --provenance --access public

.vscode/settings.json

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
"eslint.validate": [],
6767
"javascript.format.semicolons": "insert",
6868
"typescript.format.semicolons": "insert",
69+
"typescript.tsdk": "node_modules/typescript/lib",
6970
"files.eol": "\n",
7071
"search.exclude": {
7172
"roaring-node.cpp": true,

index.d.ts

+27-11
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,21 @@ Roaring Bitmap 32 documentation at: https://salvatorepreviti.github.io/roaring-n
2323

2424
import roaring = require("./");
2525

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+
2641
/** Gets the approximate memory allocated by the roaring bitmap library. */
2742
export function getRoaringUsedMemory(): number;
2843

@@ -339,7 +354,8 @@ export enum FrozenViewFormat {
339354

340355
export type FrozenViewFormatType = FrozenViewFormat | "unsafe_frozen_croaring" | "unsafe_frozen_portable";
341356

342-
export interface ReadonlyRoaringBitmap32 extends ReadonlySet<number> {
357+
export interface ReadonlyRoaringBitmap32
358+
extends Omit<ReadonlySet<number>, "forEach" | "keys" | "values" | "entries" | typeof Symbol.iterator> {
343359
/**
344360
* Property. Gets the number of items in the set (cardinality).
345361
*
@@ -442,7 +458,7 @@ export interface ReadonlyRoaringBitmap32 extends ReadonlySet<number> {
442458
* @returns {RoaringBitmap32Iterator} A new iterator
443459
* @memberof ReadonlyRoaringBitmap32
444460
*/
445-
entries(): IterableIterator<[number, number]>;
461+
entries(): ReturnType<Set<number>["entries"]>;
446462

447463
/**
448464
* Executes a function for each value in the set, in ascending order.
@@ -1262,14 +1278,14 @@ export interface ReadonlyRoaringBitmap32 extends ReadonlySet<number> {
12621278
isDisjointFrom(other: ReadonlySetLike<unknown> | ReadonlyRoaringBitmap32): boolean;
12631279
}
12641280

1265-
export interface RoaringBitmap32 extends ReadonlyRoaringBitmap32, Set<number> {
1281+
export interface RoaringBitmap32 extends ReadonlyRoaringBitmap32 {
12661282
/**
1267-
* Property: The version of the CRoaring libary as a string.
1283+
* Property: The version of the CRoaring library as a string.
12681284
* Example: "0.9.2"
12691285
*
12701286
* @export
12711287
* @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"
12731289
* @memberof RoaringBitmap32
12741290
*/
12751291
get CRoaringVersion(): string;
@@ -1681,7 +1697,7 @@ export interface RoaringBitmap32 extends ReadonlyRoaringBitmap32, Set<number> {
16811697
/**
16821698
* @returns a new RoaringBitmap32 containing all the elements in this Set which are not also in the argument.
16831699
*/
1684-
difference<U>(other: ReadonlyRoaringBitmap32): RoaringBitmap32;
1700+
difference(other: ReadonlyRoaringBitmap32): RoaringBitmap32;
16851701

16861702
/**
16871703
* 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 {
18491865
): boolean;
18501866

18511867
/**
1852-
* Property: The version of the CRoaring libary as a string.
1868+
* Property: The version of the CRoaring library as a string.
18531869
* Example: "0.4.0"
18541870
*
18551871
* @export
18561872
* @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"
18581874
*/
18591875
static get CRoaringVersion(): string;
18601876

@@ -2291,7 +2307,7 @@ export class RoaringBitmap32 {
22912307
/**
22922308
* @returns a new RoaringBitmap32 containing all the elements in this Set which are not also in the argument.
22932309
*/
2294-
difference<U>(other: ReadonlyRoaringBitmap32): RoaringBitmap32;
2310+
difference(other: ReadonlyRoaringBitmap32): RoaringBitmap32;
22952311

22962312
/**
22972313
* 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 {
25452561
}
25462562

25472563
/**
2548-
* Property: The version of the CRoaring libary as a string.
2564+
* Property: The version of the CRoaring library as a string.
25492565
* Example: "0.4.0"
25502566
*
25512567
* @export
25522568
* @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"
25542570
* @memberof RoaringModule
25552571
*/
25562572
export const CRoaringVersion: string;

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@
5757
"update-roaring": "./scripts/update-roaring.sh",
5858
"build-dev": "node ./scripts/build.js --dev",
5959
"test": "node ./scripts/test.js",
60-
"lint": "eslint .",
61-
"lint:fix": "eslint . --fix && prettier --write .",
60+
"lint": "eslint . && tsc",
61+
"lint:fix": "eslint . --fix && prettier --write . && tsc",
6262
"doc": "typedoc ./index.d.ts",
6363
"benchmarks": "node --expose-gc ./scripts/benchmarks.js"
6464
},

test/RoaringBitmap32/RoaringBitmap32.basic.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -906,7 +906,7 @@ describe("RoaringBitmap32 basic", () => {
906906
});
907907

908908
it("implements Set<> interface properly", () => {
909-
const x: Set<number> = new RoaringBitmap32([1, 3]);
909+
const x = new RoaringBitmap32([1, 3]);
910910
x.add(2);
911911
expect(x.has(2)).eq(true);
912912
expect(Array.from(x.entries())).to.deep.equal([

0 commit comments

Comments
 (0)