(mutable: MutableQueue.MutableQueue<A>)
| 433 | |
| 434 | /** @internal */ |
| 435 | export const backingQueueFromMutableQueue = <A>(mutable: MutableQueue.MutableQueue<A>): Queue.BackingQueue<A> => |
| 436 | new BackingQueueFromMutableQueue(mutable) |
| 437 | |
| 438 | /** @internal */ |
| 439 | export const capacity = <A>(self: Queue.Dequeue<A> | Queue.Enqueue<A>): number => self.capacity() |