Returns a tuple containing the given elements.
(Object... elems)
| 76 | |
| 77 | /** Returns a tuple containing the given elements. */ |
| 78 | public static Tuple of(Object... elems) { |
| 79 | return wrap(Arrays.copyOf(elems, elems.length)); |
| 80 | } |
| 81 | |
| 82 | @Override |
| 83 | public StarlarkType getStarlarkType() { |