Currently creating named tuples is a bit wordy:
Tuple!(double, "x", double, "y")(1.0, 2.0);
This could be simplified by adding a namedTuple function:
namedTuple!("x", "y")(1.0, 2.0);
I have an implementation in ggplotd (named aes [1]), which could be used if people think this is a good idea.
[1] https://github.com/BlackEdder/ggplotd/blob/aes/source/ggplotd/aes.d#L82