Select Git revision
-
Alex Gokhale authoredAlex Gokhale authored
pointer.go 136 B
package pointer
func String(s string) *string { return &s }
func Int(i int) *int { return &i }
func Bool(b bool) *bool { return &b }
package pointer
func String(s string) *string { return &s }
func Int(i int) *int { return &i }
func Bool(b bool) *bool { return &b }