Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ToScreamingDelimited ¶
Types ¶
type Graph ¶
type Graph struct {
// contains filtered or unexported fields
}
func (*Graph) Connections ¶
type Once ¶
type Once struct {
// contains filtered or unexported fields
}
Once is an object that will perform exactly one action until Reset is called. See http://golang.org/pkg/sync/#Once
func (*Once) Do ¶
func (o *Once) Do(f func())
Do simulates sync.Once.Do by executing the specified function only once, until Reset is called. See http://golang.org/pkg/sync/#Once
type StackInf ¶
type StackInf struct {
// contains filtered or unexported fields
}
type StackInt32 ¶
type StackInt32 struct {
// contains filtered or unexported fields
}
func (*StackInt32) Len ¶
func (s *StackInt32) Len() int
Return the number of items in the StackInt32
func (*StackInt32) Pop ¶
func (s *StackInt32) Pop() int32
Pop the top item of the StackInt32 and return it
func (*StackInt32) Push ¶
func (s *StackInt32) Push(value int32)
Push a value onto the top of the StackInt32
Click to show internal directories.
Click to hide internal directories.