TupleContents returns a slice containing the type of each tuple field. This is nil for non-TupleFamily types.
()
| 975 | // TupleContents returns a slice containing the type of each tuple field. This |
| 976 | // is nil for non-TupleFamily types. |
| 977 | func (t *T) TupleContents() []T { |
| 978 | return t.InternalType.TupleContents |
| 979 | } |
| 980 | |
| 981 | // TupleLabels returns a slice containing the labels of each tuple field. This |
| 982 | // is nil for types not in the TupleFamily, or if the tuple type does not |
no outgoing calls
no test coverage detected