Browse Source

Remove var from list (bool, int, int64, string)

Volodymyr Tkach 2 years ago
parent
commit
096128bec9
4 changed files with 16 additions and 0 deletions
  1. 4 0
      session/bool.go
  2. 4 0
      session/int.go
  3. 4 0
      session/int64.go
  4. 4 0
      session/string.go

+ 4 - 0
session/bool.go

@@ -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)
+}

+ 4 - 0
session/int.go

@@ -23,3 +23,7 @@ func (s *Session) SetInt(name string, value int) {
 		s.changed = true
 	}
 }
+
+func (s *Session) DelInt(name string) {
+	delete(s.varlist.Int, name)
+}

+ 4 - 0
session/int64.go

@@ -23,3 +23,7 @@ func (s *Session) SetInt64(name string, value int64) {
 		s.changed = true
 	}
 }
+
+func (s *Session) DelInt64(name string) {
+	delete(s.varlist.Int64, name)
+}

+ 4 - 0
session/string.go

@@ -23,3 +23,7 @@ func (s *Session) SetString(name string, value string) {
 		s.changed = true
 	}
 }
+
+func (s *Session) DelString(name string) {
+	delete(s.varlist.String, name)
+}