Int64 stores v in a new int64 value and returns a pointer to it.
(v int64)
| 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) } |
| 55 | |
| 56 | // Float32 stores v in a new float32 value and returns a pointer to it. |
| 57 | func Float32(v float32) proto.Option[float32] { return proto.Some(v) } |