package node func (n *Node) SetBool(v bool) { n.boolValue = v } func (n *Node) GetBool() bool { return n.boolValue }