package advsql import "time" type defaultDecoderType interface { ~int | ~int8 | ~int16 | ~int32 | ~int64 | ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~float32 | ~float64 | ~string | ~bool | time.Time } // Decoder provides default decoders for primitive datatypes func Decoder[T defaultDecoderType](value *T, decode ScanFunc) error { return decode(value) }