Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ParseBytes ¶
Types ¶
type Array ¶
type Array[T any] struct { // TODO: Add a safe `.at()` method Items []T // contains filtered or unexported fields }
type Number ¶
type Number[T NumberType] struct { RawVal T // contains filtered or unexported fields }
func NewNumber ¶
func NewNumber[T NumberType](num T) Number[T]
type NumberType ¶
type NumberType interface { constraints.Integer | constraints.Float }
type Optional ¶
type Optional[T any] struct { RawVal *T // contains filtered or unexported fields }
TODO: Change to "Typed" constraint. This will force all implementations to be pointers.
type Record ¶
Record Object is a mixed bag of properties. Keys are strings and value is user defined.
Click to show internal directories.
Click to hide internal directories.