ArrayContents returns the type of array elements. This is nil for types that are not in the ArrayFamily.
()
| 969 | // ArrayContents returns the type of array elements. This is nil for types that |
| 970 | // are not in the ArrayFamily. |
| 971 | func (t *T) ArrayContents() *T { |
| 972 | return t.InternalType.ArrayContents |
| 973 | } |
| 974 | |
| 975 | // TupleContents returns a slice containing the type of each tuple field. This |
| 976 | // is nil for non-TupleFamily types. |
no outgoing calls
no test coverage detected