Versions in this module Expand all Collapse all v1 v1.9.11 Mar 16, 2022 Changes in this version + var Level = 7 + var MergeHeaderFunc = func(input string) string + var MergePackageFunc = func(input string) string + func PathSegmenter(path string, start int) (segment string, next int) + type Fan struct + FanIn int + FanOut int + Name string + type FullGraph struct + NodeList map[string]string + RelationList map[string]*Relation + func (fullGraph *FullGraph) BuildMapTree(include func(key string) bool) *PathTrie + func (fullGraph *FullGraph) MapToGraph(trie *PathTrie) *gographviz.Graph + func (fullGraph *FullGraph) MergeHeaderFile(merge func(string) string) *FullGraph + func (fullGraph *FullGraph) SortedByFan(merge func(string) string) []*Fan + func (fullGraph *FullGraph) ToDot(split string, include func(string) bool) *gographviz.Graph + func (fullGraph *FullGraph) ToMapDot(include func(string) bool) *gographviz.Graph + type PathTrie struct + Children map[string]*PathTrie + Value string + func NewPathTrie() *PathTrie + func (trie *PathTrie) Put(key string) + type Relation struct + From string + Style string + To string + type StringSegmenter func(key string, start int) (segment string, nextIndex int)