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

Function canEditNode

packages/effect/src/internal/hashMap/node.ts:55–57  ·  view source on GitHub ↗
(node: Node<K, V>, edit: number)

Source from the content-addressed store, hash-verified

53
54/** @internal */
55export function canEditNode<K, V>(node: Node<K, V>, edit: number): boolean {
56 return isEmptyNode(node) ? false : edit === node.edit
57}
58
59/** @internal */
60export class LeafNode<out K, out V> {

Callers 4

modifyMethod · 0.85
modifyMethod · 0.85
modifyMethod · 0.85
modifyMethod · 0.85

Calls 1

isEmptyNodeFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…