ptr

package
v0.0.0-...-3c6badc Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 23, 2024 License: Apache-2.0 Imports: 1 Imported by: 285

Documentation

Overview

Package ptr holds utilities for taking pointer references to values.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Bool

func Bool(b bool) *bool

Bool is a helper for turning bools into pointers for use in API types that want *bool.

func BoolValue

func BoolValue(b *bool) bool

BoolValue is a helper for turning pointers to bools into values for use in API types that want bool.

func Duration

func Duration(t time.Duration) *time.Duration

Duration is a helper for turning time.Duration into pointers for use in API types that want *time.Duration.

func DurationValue

func DurationValue(t *time.Duration) time.Duration

DurationValue is a helper for turning *time.Duration into values for use in API types that want time.Duration.

func Float32

func Float32(f float32) *float32

Float32 is a helper for turning floats into pointers for use in API types that want *float32.

func Float32Value

func Float32Value(f *float32) float32

Float32Value is a helper for turning pointers to floats into values for use in API types that want float32.

func Float64

func Float64(f float64) *float64

Float64 is a helper for turning floats into pointers for use in API types that want *float64.

func Float64Value

func Float64Value(f *float64) float64

Float64Value is a helper for turning pointers to floats into values for use in API types that want float64.

func Int32

func Int32(i int32) *int32

Int32 is a helper for turning integers into pointers for use in API types that want *int32.

func Int32Value

func Int32Value(i *int32) int32

Int32Value is a helper for turning pointers to integers into values for use in API types that want int32.

func Int64

func Int64(i int64) *int64

Int64 is a helper for turning integers into pointers for use in API types that want *int64.

func Int64Value

func Int64Value(i *int64) int64

Int64Value is a helper for turning pointers to integers into values for use in API types that want int64.

func String

func String(s string) *string

String is a helper for turning strings into pointers for use in API types that want *string.

func StringValue

func StringValue(s *string) string

StringValue is a helper for turning pointers to strings into values for use in API types that want string.

func Time

func Time(t time.Time) *time.Time

Time is a helper for turning a const time.Time into a pointer for use in API types that want *time.Duration.

func TimeValue

func TimeValue(t *time.Time) time.Time

TimeValue is a helper for turning *time.Time into values for use in API types that want API types that want time.Time.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL