lang.go 274 B

1234567891011
  1. package lang
  2. // Placeholder is a placeholder object that can be used globally.
  3. var Placeholder PlaceholderType
  4. type (
  5. // GenericType can be used to hold any type.
  6. GenericType = interface{}
  7. // PlaceholderType represents a placeholder type.
  8. PlaceholderType = struct{}
  9. )