(self: List<A>)
| 217 | * @category refinements |
| 218 | */ |
| 219 | export const isNil = <A>(self: List<A>): self is Nil<A> => self._tag === "Nil" |
| 220 | |
| 221 | /** |
| 222 | * Returns `true` if the specified value is a `List.Cons<A>`, `false` otherwise. |
no outgoing calls
no test coverage detected