MustGetInt returns the int value with specified key in session object.
(key string)
| 217 | |
| 218 | // MustGetInt returns the int value with specified key in session object. |
| 219 | func (s *Session) MustGetInt(key string) (value int64) { |
| 220 | value, _ = s.GetInt(key) |
| 221 | return |
| 222 | } |
| 223 | |
| 224 | // MustGetUint returns the unsigned int value with specified key in session object. |
| 225 | func (s *Session) MustGetUint(key string) (value uint64) { |
no test coverage detected