(ImmutableList<StarlarkType> elementTypes)
| 453 | } |
| 454 | |
| 455 | public static TupleType tuple(ImmutableList<StarlarkType> elementTypes) { |
| 456 | return new AutoValue_Types_TupleType(elementTypes); |
| 457 | } |
| 458 | |
| 459 | /** Tuple type of a fixed length. */ |
| 460 | @AutoValue |
no outgoing calls
no test coverage detected