(self: MutableQueue<A>)
| 97 | * @category getters |
| 98 | */ |
| 99 | export const length = <A>(self: MutableQueue<A>): number => MutableList.length(self.queue) |
| 100 | |
| 101 | /** |
| 102 | * Returns `true` if the queue is empty, `false` otherwise. |
nothing calls this directly
no test coverage detected
searching dependent graphs…