package
1.0.1
Repository: https://github.com/segmentio/objconv.git
Documentation: pkg.go.dev

# Functions

AppendDuration appends a human-readable representation of d to b.
CheckInt64Bounds verifies that v is within min and max, t represents the original type of v.
CheckUint64Bounds verifies that v is smaller than max, t represents the original type of v.
IsEmpty returns true if the value given as argument would be considered empty by the standard library packages, and therefore not serialized if `omitempty` is set on a struct field with this value.
IsEmptyValue returns true if the value given as argument would be considered empty by the standard library packages, and therefore not serialized if `omitempty` is set on a struct field with this value.
IsZero returns true if the value given as argument is the zero-value of the type of v.
No description provided by the author
ParseInt parses a decimanl representation of an int64 from b.
ParseTag parses a raw tag obtained from a struct field, returning the results as a tag value.
ParseTagJSON is similar to ParseTag but only supports features supported by the standard encoding/json package.
ParseUintHex parses a hexadecimanl representation of a uint64 from b.

# Constants

Float32IntMax is the maximum consecutive integer value representable by a float32.
Float32IntMin is the minimum consecutive integer value representable by a float32.
Float64IntMax is the maximum consecutive integer value representable by a float64.
Float64IntMin is the minimum consecutive integer value representable by a float64.
Int16Max is the maximum value of a int16.
Int16Min is the minimum value of a int16.
Int32Max is the maximum value of a int32.
Int32Min is the minimum value of a int32.
Int64Max is the maximum value of a int64.
Int64Min is the minimum value of a int64.
Int8Max is the maximum value of a int8.
Int8Min is the minimum value of a int8.
IntMax is the maximum value of a int.
IntMin is the minimum value of a int.
Uint16Max is the maximum value of a uint16.
Uint16Min is the minimum value of a uint16.
Uint32Max is the maximum value of a uint32.
Uint32Min is the minimum value of a uint32.
Uint64Max is the maximum value of a uint64.
Uint64Min is the minimum value of a uint64.
Uint8Max is the maximum value of a uint8.
Uint8Min is the minimum value of a uint8.
UintMax is the maximum value of a uint.
UintMin is the minimum value of a uint.
UintptrMax is the maximum value of a uintptr.
UintptrMin is the minimum value of a uintptr.

# Structs

Tag represents the result of parsing the tag of a struct field.