IsHydrated returns true if this is a user-defined type and the TypeMeta is hydrated.
()
| 2484 | // IsHydrated returns true if this is a user-defined type and the TypeMeta |
| 2485 | // is hydrated. |
| 2486 | func (t *T) IsHydrated() bool { |
| 2487 | return t.UserDefined() && t.TypeMeta != (UserDefinedTypeMetadata{}) |
| 2488 | } |
| 2489 | |
| 2490 | var typNameLiterals map[string]*T |
| 2491 |
nothing calls this directly
no test coverage detected