ArrayContents returns the type of array elements. This is nil for types that are not in the ArrayFamily.
()
| 1503 | // ArrayContents returns the type of array elements. This is nil for types that |
| 1504 | // are not in the ArrayFamily. |
| 1505 | func (t *T) ArrayContents() *T { |
| 1506 | return t.InternalType.ArrayContents |
| 1507 | } |
| 1508 | |
| 1509 | // TupleContents returns a slice containing the type of each tuple field. This |
| 1510 | // is nil for non-TupleFamily types. |
no outgoing calls
no test coverage detected