TupleLabels returns a slice containing the labels of each tuple field. This is nil for types not in the TupleFamily, or if the tuple type does not specify labels.
()
| 982 | // is nil for types not in the TupleFamily, or if the tuple type does not |
| 983 | // specify labels. |
| 984 | func (t *T) TupleLabels() []string { |
| 985 | return t.InternalType.TupleLabels |
| 986 | } |
| 987 | |
| 988 | // Name returns a single word description of the type that describes it |
| 989 | // succinctly, but without all the details, such as width, locale, etc. The name |
no outgoing calls
no test coverage detected