Versions in this module Expand all Collapse all v1 v1.0.0 Aug 15, 2024 Changes in this version + type Nullable map[bool]T + func Null[T any]() (n Nullable[T]) + func Of[T any](t T) (n Nullable[T]) + func Unspecified[T any]() (n Nullable[T]) + func (t *Nullable[T]) Scan(src any) error + func (t *Nullable[T]) Set(value T) + func (t *Nullable[T]) SetNull() + func (t *Nullable[T]) SetUnspecified() + func (t *Nullable[T]) UnmarshalJSON(data []byte) error + func (t Nullable[T]) Get() (empty T, _ error) + func (t Nullable[T]) IsNull() bool + func (t Nullable[T]) IsSpecified() bool + func (t Nullable[T]) MarshalJSON() ([]byte, error) + func (t Nullable[T]) MustGet() T + func (t Nullable[T]) Value() (driver.Value, error)