int64.go 533 B

1234567891011121314151617181920212223242526272829
  1. package session
  2. func (s *Session) IsSetInt64(name string) bool {
  3. if _, ok := s.varlist.Int64[name]; ok {
  4. return true
  5. } else {
  6. return false
  7. }
  8. }
  9. func (s *Session) GetInt64(name string, def int64) int64 {
  10. if v, ok := s.varlist.Int64[name]; ok {
  11. return v
  12. } else {
  13. return def
  14. }
  15. }
  16. func (s *Session) SetInt64(name string, value int64) {
  17. isset := s.IsSetInt64(name)
  18. s.varlist.Int64[name] = value
  19. if isset || value != 0 {
  20. s.changed = true
  21. }
  22. }
  23. func (s *Session) DelInt64(name string) {
  24. delete(s.varlist.Int64, name)
  25. }