Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/deno/cli/js/streams/queue.ts>Queue

A modern runtime for JavaScript and TypeScript.
Go to Latest
interface Queue
import { type Queue } from "https://deno.land/x/deno@v0.30.0/cli/js/streams/queue.ts";

Properties

readonly
length: number

Methods

push(t: T): void
shift(): T | undefined
front(): T | undefined