CheckFn is a callback used by traversal helpers. It receives the node id plus the node's value.
func(T, V) error
| 50 | |
| 51 | // CheckFn is a callback used by traversal helpers. It receives the node id plus the node's value. |
| 52 | type CheckFn[T comparable, V any] func(T, V) error |
| 53 | |
| 54 | // Graph is a directed dependency graph. |
| 55 | // |
nothing calls this directly
no outgoing calls
no test coverage detected