id.go 191 B

12345678910
  1. package types
  2. // The type represents type safe
  3. // way to access objects by IDs.
  4. type Id8[V any] int8
  5. type Id16[V any] int16
  6. type Id[V any] int
  7. type Id32[V any] int32
  8. type Id64[V any] int64