@@ -23,3 +23,7 @@ func (s *Session) SetBool(name string, value bool) {
s.changed = true
}
+
+func (s *Session) DelBool(name string) {
+ delete(s.varlist.Bool, name)
+}
@@ -23,3 +23,7 @@ func (s *Session) SetInt(name string, value int) {
+func (s *Session) DelInt(name string) {
+ delete(s.varlist.Int, name)
@@ -23,3 +23,7 @@ func (s *Session) SetInt64(name string, value int64) {
+func (s *Session) DelInt64(name string) {
+ delete(s.varlist.Int64, name)
@@ -23,3 +23,7 @@ func (s *Session) SetString(name string, value string) {
+func (s *Session) DelString(name string) {
+ delete(s.varlist.String, name)