int64.go 741 B

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