Logo

Programming-Idioms

  • Java
  • Python
  • D

Idiom #220 Create a tuple value

Create t consisting of 3 values having different types.

Explain if the elements of t are strongly typed or not.

import std.typecons;
auto entry = tuple!("index", "value", "active")(4, "Hello", true);

Field names can be provided.

entry.index is 4, etc.
import std.typecons;
auto value = tuple(5, 6.7, "hello");
record Tuple(Object ... a) {}
Tuple t = new Tuple("abc", 123, true);
record Tuple<A, B, C>(A a, B b, C c) {}
Tuple<String, Integer, Boolean> t
    = new Tuple<>("abc", 123, true);
class Tuple {
    String s;
    int i;
    boolean b;
}
record Tuple(int a, String b, boolean c) {}
var t = new Tuple(1, "hello", true);

Strongly typed.
record is available since Java 16
t = tuple('abc', 123, true)
t = (2.5, "hello", -1)

Tuples are immutable.
They may be created with elements of any type.
let t = 1, 'a', "b"

in OCaml, parenthesis for tuples are optional and only used to disambiguate.
Type inference can determine the type of the tuple without annotation.

New implementation...
programming-idioms.org