(kind: Kind, get: (s: any) => any, set: (a: any, s?: any) => any)
| 327 | type Node = ReadonlyArray<Step> |
| 328 | |
| 329 | function primitiveNode(kind: Kind, get: (s: any) => any, set: (a: any, s?: any) => any): Node { |
| 330 | return [{ _tag: "PrimitiveNode", kind, get, set }] |
| 331 | } |
| 332 | |
| 333 | const identityOperation: Operation = { |
| 334 | kind: "Iso", |
no outgoing calls
no test coverage detected