1 2 3 4 5 6 7 8 9
package node func (n *Node) SetBool(v bool) { n.boolValue = v } func (n *Node) GetBool() bool { return n.boolValue }