Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DAG ¶
type DAG interface {
AddVertex(s string, v any) error
Connect(from, to string)
AddDownEdge(from, to string)
AddUpEdge(from, to string)
VertexExists(s string) bool
GetVertex(s string) any
GetVertices() map[string]any
GetDownVertexes(from string) []string
GetUpVertexes(from string) []string
TransitiveReduction()
}
type WalkConfig ¶
type WalkConfig struct {
WalkInitFn WalkInitFn
WalkEntryFn WalkEntryFn
}
type WalkEntryFn ¶
type WalkInitFn ¶
type WalkInitFn func()
Click to show internal directories.
Click to hide internal directories.