bool.go 719 B

123456789101112131415161718192021222324252627282930313233343536
  1. package session
  2. // IsSetBool to check if variable exists
  3. func (s *Session) IsSetBool(name string) bool {
  4. if _, ok := s.varlist.Bool[name]; ok {
  5. return true
  6. } else {
  7. return false
  8. }
  9. }
  10. // GetBool returns stored variable value or default
  11. func (s *Session) GetBool(name string, def bool) bool {
  12. if v, ok := s.varlist.Bool[name]; ok {
  13. return v
  14. } else {
  15. return def
  16. }
  17. }
  18. // SetBool to set variable value
  19. func (s *Session) SetBool(name string, value bool) {
  20. isset := s.IsSetBool(name)
  21. s.varlist.Bool[name] = value
  22. if isset || value {
  23. s.changed = true
  24. }
  25. }
  26. // DelBool to remove variable
  27. func (s *Session) DelBool(name string) {
  28. if s.IsSetBool(name) {
  29. delete(s.varlist.Bool, name)
  30. s.changed = true
  31. }
  32. }