Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type NodeContainer ¶ added in v0.0.61
type NodeContainer interface {
NodeAtInterface(index int) NodeInterface
NodeAtStruct(index int) NodeStruct
NodeAtAny(index int) any
}
func NewNodeContainer ¶ added in v0.0.61
func NewNodeContainer(count int) NodeContainer
type NodeInterface ¶ added in v0.0.61
type NodeInterface interface {
PreviousInterface() *NodeInterface
NextInterface() *NodeInterface
ValueInterface() int
}
type NodeStruct ¶ added in v0.0.61
type NodeStruct struct {
PreviousStruct *NodeInterface
NextStruct *NodeInterface
ValueStruct int
}
func (*NodeStruct) NextInterface ¶ added in v0.0.61
func (ns *NodeStruct) NextInterface() *NodeInterface
func (*NodeStruct) PreviousInterface ¶ added in v0.0.61
func (ns *NodeStruct) PreviousInterface() *NodeInterface
func (*NodeStruct) ValueInterface ¶ added in v0.0.61
func (ns *NodeStruct) ValueInterface() int
type SimpleAdder ¶ added in v0.0.62
func NewSimpleAdder ¶ added in v0.0.62
func NewSimpleAdder() SimpleAdder
Click to show internal directories.
Click to hide internal directories.