Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Registry ¶
type Registry interface { // Register an object Register(v any) // Deregister removes the registered object from the registry Deregister(v any) // Exists return true when a given object is in the registry Exists(v any) bool // TypesMap returns the list of registered at any point in time TypesMap() map[string]reflect.Type // Type returns the type of object Type(v any) (reflect.Type, bool) // TypeOf returns the type of object name TypeOf(name string) (reflect.Type, bool) }
Registry defines the types registry interface
Click to show internal directories.
Click to hide internal directories.