Int32 stores v in a new int32 value and returns a pointer to it.
(v int32)
| 49 | |
| 50 | // Int32 stores v in a new int32 value and returns a pointer to it. |
| 51 | func Int32(v int32) proto.Option[int32] { return proto.Some(v) } |
| 52 | |
| 53 | // Int64 stores v in a new int64 value and returns a pointer to it. |
| 54 | func Int64(v int64) proto.Option[int64] { return proto.Some(v) } |