Documentation
¶
Index ¶
- type Record
- func (r Record) Bool(column string) bool
- func (r Record) BoolSafe(column string) (bool, bool)
- func (r Record) Byte(column string) byte
- func (r Record) ByteSafe(column string) (byte, bool)
- func (r Record) Float32(column string) float32
- func (r Record) Float32Safe(column string) (float32, bool)
- func (r Record) Float64(column string) float64
- func (r Record) Float64Safe(column string) (float64, bool)
- func (r Record) Has(column string) bool
- func (r Record) Int(column string) int
- func (r Record) Int16(column string) int16
- func (r Record) Int16Safe(column string) (int16, bool)
- func (r Record) Int32(column string) int32
- func (r Record) Int32Safe(column string) (int32, bool)
- func (r Record) Int64(column string) int64
- func (r Record) Int64Safe(column string) (int64, bool)
- func (r Record) IntSafe(column string) (int, bool)
- func (r Record) String(column string) string
- func (r Record) StringSafe(column string) (string, bool)
- func (r Record) TypeOf(column string) (reflect.Type, bool)
- func (r Record) Uint(column string) uint
- func (r Record) Uint8(column string) uint8
- func (r Record) Uint8Safe(column string) (uint8, bool)
- func (r Record) Uint16(column string) uint16
- func (r Record) Uint16Safe(column string) (uint16, bool)
- func (r Record) Uint32(column string) uint32
- func (r Record) Uint32Safe(column string) (uint32, bool)
- func (r Record) Uint64(column string) uint64
- func (r Record) Uint64Safe(column string) (uint64, bool)
- func (r Record) UintSafe(column string) (uint, bool)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Record ¶
Record stores mixed scalar data (Boolean, numeric, and string) and provides type-safe methods to retrieve it. It automatically casts values where possible.
https://go.dev/ref/spec#Types
Click to show internal directories.
Click to hide internal directories.