Integer is the Value that represents 32-bit signed int Use with: TagInteger, TagEnum
| 243 | // |
| 244 | // Use with: TagInteger, TagEnum |
| 245 | type Integer int32 |
| 246 | |
| 247 | // String converts Integer value to string |
| 248 | func (v Integer) String() string { return fmt.Sprintf("%d", int32(v)) } |
no outgoing calls
no test coverage detected