(t *Type)
| 23399 | } |
| 23400 | |
| 23401 | func isMutableTupleType(t *Type) bool { |
| 23402 | return isTupleType(t) && !t.TargetTupleType().readonly |
| 23403 | } |
| 23404 | |
| 23405 | func isGenericTupleType(t *Type) bool { |
| 23406 | return isTupleType(t) && t.TargetTupleType().combinedFlags&ElementFlagsVariadic != 0 |
nothing calls this directly
no test coverage detected