(self: List<A>)
| 225 | * @category refinements |
| 226 | */ |
| 227 | export const isCons = <A>(self: List<A>): self is Cons<A> => self._tag === "Cons" |
| 228 | |
| 229 | /** |
| 230 | * Returns the number of elements contained in the specified `List` |
no outgoing calls
no test coverage detected
searching dependent graphs…