Copyright 2019 The Go Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.

package proto
Bool stores v in a new bool value and returns a pointer to it.
func ( bool) *bool { return & }
Int stores v in a new int32 value and returns a pointer to it. Deprecated: Use Int32 instead.
func ( int) *int32 { return Int32(int32()) }
Int32 stores v in a new int32 value and returns a pointer to it.
func ( int32) *int32 { return & }
Int64 stores v in a new int64 value and returns a pointer to it.
func ( int64) *int64 { return & }
Uint32 stores v in a new uint32 value and returns a pointer to it.
func ( uint32) *uint32 { return & }
Uint64 stores v in a new uint64 value and returns a pointer to it.
func ( uint64) *uint64 { return & }
Float32 stores v in a new float32 value and returns a pointer to it.
func ( float32) *float32 { return & }
Float64 stores v in a new float64 value and returns a pointer to it.
func ( float64) *float64 { return & }
String stores v in a new string value and returns a pointer to it.