MCPcopy Index your code
hub / github.com/Effect-TS/effect / isEmptyNode

Function isEmptyNode

packages/effect/src/internal/hashMap/node.ts:43–45  ·  view source on GitHub ↗
(a: unknown)

Source from the content-addressed store, hash-verified

41
42/** @internal */
43export function isEmptyNode(a: unknown): a is EmptyNode<unknown, unknown> {
44 return isTagged(a, "EmptyNode")
45}
46
47/** @internal */
48export function isLeafNode<K, V>(

Callers 5

isLeafNodeFunction · 0.85
canEditNodeFunction · 0.85
modifyMethod · 0.85
modifyMethod · 0.85
packFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected