int.go 707 B

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