...

Source file src/github.com/onsi/gomega/matchers/support/goraph/node/node.go

Documentation: github.com/onsi/gomega/matchers/support/goraph/node

     1  package node
     2  
     3  type Node struct {
     4  	ID    int
     5  	Value interface{}
     6  }
     7  
     8  type NodeOrderedSet []Node
     9  

View as plain text