Versions in this module Expand all Collapse all v0 v0.3.0 Oct 21, 2025 v0.2.0 Oct 10, 2025 Changes in this version + const Error + func NewError(skip int, flag error, msg string, args ...any) error + func RegistryEntries[T any](registry *Registry[T]) map[string]T + func RegistryGet[T any](registry *Registry[T], name string) (T, bool) + func RegistrySet[T any](registry *Registry[T], name string, value T) error + func WrapError(cause error, skip int, flag error, msg string, args ...any) error + type Bitset []byte + func NewBitset(bits []bool) Bitset + func (self Bitset) ClearBit(pos int) error + func (self Bitset) GetBit(pos int) (bool, error) + func (self Bitset) SetBit(pos int) error + type HexBinary []byte + func (self *HexBinary) UnmarshalText(text []byte) error + func (self HexBinary) MarshalText() ([]byte, error) + type RaisedErr struct + Cause error + Filename string + Flag error + Line int + Msg string + func (self RaisedErr) Error() string + func (self RaisedErr) Unwrap() []error + type Registry struct + func NewRegistry[T any]() *Registry[T]