Skip to content

Commit 1c61238

Browse files
committed
Remove unnecessary docs section
1 parent 1254ca9 commit 1c61238

File tree

4 files changed

+7
-16
lines changed

4 files changed

+7
-16
lines changed

dist/data-oriented-slim-queue.d.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,8 @@ export declare const DEFAULT_SLIM_QUEUE_CAPACITY_INCREMENT_FACTOR = 1.5;
1818
/**
1919
* SlimQueue
2020
*
21-
* The `SlimQueue` class implements an in-memory queue with a basic API, targeting pure use cases like
22-
* task queues, breadth-first search (BFS), and similar scenarios. It intentionally excludes linear
23-
* operations such as iteration and splicing, often found in more feature-rich queue variants, as these
24-
* are considered over-engineering for pure queue use cases. Instead, these complex operations can be
25-
* more effectively achieved through the composition of simpler building blocks.
21+
* The `SlimQueue` class implements an in-memory queue with a basic API, targeting pure FIFO use cases
22+
* like task queues, breadth-first search (BFS), and similar scenarios.
2623
*
2724
* ### Data-Oriented Design
2825
* This implementation follows the principles of Data-Oriented Design (DOD), optimizing memory layout and

dist/data-oriented-slim-queue.js

Lines changed: 2 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/data-oriented-slim-queue.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/data-oriented-slim-queue.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,8 @@ const MAX_ALLOWED_CAPACITY_INCREMENT_FACTOR = 2;
2323
/**
2424
* SlimQueue
2525
*
26-
* The `SlimQueue` class implements an in-memory queue with a basic API, targeting pure use cases like
27-
* task queues, breadth-first search (BFS), and similar scenarios. It intentionally excludes linear
28-
* operations such as iteration and splicing, often found in more feature-rich queue variants, as these
29-
* are considered over-engineering for pure queue use cases. Instead, these complex operations can be
30-
* more effectively achieved through the composition of simpler building blocks.
26+
* The `SlimQueue` class implements an in-memory queue with a basic API, targeting pure FIFO use cases
27+
* like task queues, breadth-first search (BFS), and similar scenarios.
3128
*
3229
* ### Data-Oriented Design
3330
* This implementation follows the principles of Data-Oriented Design (DOD), optimizing memory layout and

0 commit comments

Comments
 (0)