(p *int32)
| 162 | } |
| 163 | |
| 164 | func Int32PtrToString(p *int32) string { |
| 165 | if p == nil { |
| 166 | return "" |
| 167 | } |
| 168 | return strconv.FormatInt(int64(*p), 10) |
| 169 | } |
| 170 | func PtrInt(v int) *int { return &v } |
| 171 | func PtrInt32(v int32) *int32 { return &v } |
| 172 | func PtrInt64(v int64) *int64 { return &v } |
no outgoing calls
no test coverage detected
searching dependent graphs…