|
@@ -1,25 +1,25 @@
|
|
|
package session
|
|
|
|
|
|
-func (this *Session) IsSetBool(name string) bool {
|
|
|
- if _, ok := this.v.Bool[name]; ok {
|
|
|
+func (s *Session) IsSetBool(name string) bool {
|
|
|
+ if _, ok := s.v.Bool[name]; ok {
|
|
|
return true
|
|
|
} else {
|
|
|
return false
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-func (this *Session) GetBool(name string, def bool) bool {
|
|
|
- if v, ok := this.v.Bool[name]; ok {
|
|
|
+func (s *Session) GetBool(name string, def bool) bool {
|
|
|
+ if v, ok := s.v.Bool[name]; ok {
|
|
|
return v
|
|
|
} else {
|
|
|
return def
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-func (this *Session) SetBool(name string, value bool) {
|
|
|
- isset := this.IsSetBool(name)
|
|
|
- this.v.Bool[name] = value
|
|
|
+func (s *Session) SetBool(name string, value bool) {
|
|
|
+ isset := s.IsSetBool(name)
|
|
|
+ s.v.Bool[name] = value
|
|
|
if isset || value {
|
|
|
- this.c = true
|
|
|
+ s.c = true
|
|
|
}
|
|
|
}
|