(...elements: ReadonlyArray<A>)
| 126 | * @category constructors |
| 127 | */ |
| 128 | export const make = <A>(...elements: ReadonlyArray<A>): MutableList<A> => fromIterable(elements) |
| 129 | |
| 130 | /** |
| 131 | * Returns `true` if the list contains zero elements, `false`, otherwise. |
nothing calls this directly
no test coverage detected