(p *policy.OptionalInt)
| 493 | } |
| 494 | |
| 495 | func valueOrNotSet(p *policy.OptionalInt) string { |
| 496 | if p == nil { |
| 497 | return "-" |
| 498 | } |
| 499 | |
| 500 | return fmt.Sprintf("%v", *p) |
| 501 | } |
| 502 | |
| 503 | func valueOrNotSetOptionalInt64Bytes(p *policy.OptionalInt64) string { |
| 504 | if p == nil { |
no outgoing calls
no test coverage detected