MCPcopy Index your code
hub / github.com/Effect-TS/effect / isFull

Function isFull

packages/effect/src/MutableQueue.ts:115–116  ·  view source on GitHub ↗
(self: MutableQueue<A>)

Source from the content-addressed store, hash-verified

113 * @category getters
114 */
115export const isFull = <A>(self: MutableQueue<A>): boolean =>
116 self.capacity === undefined ? false : MutableList.length(self.queue) === self.capacity
117
118/**
119 * The **maximum** number of elements that a queue can hold.

Callers

nothing calls this directly

Calls 1

lengthMethod · 0.65

Tested by

no test coverage detected