An open API service indexing awesome lists of open source software.

https://github.com/r-unic/better-queue

Simple O(1) queue implementation for Roblox
https://github.com/r-unic/better-queue

constant-time queue rbxts

Last synced: 5 months ago
JSON representation

Simple O(1) queue implementation for Roblox

Awesome Lists containing this project

README

          

# @rbxts/better-queue
Simple O(1) queue implementation for Roblox

## Example
```ts
const q = new Queue;
q.enqueue(1);
q.enqueue(2);
q.dequeue();
q.size();
q.isEmpty();
q.toArray();
```