Skip to content

Instantly share code, notes, and snippets.

@ufcpp
Last active August 29, 2015 14:17
Show Gist options
  • Save ufcpp/62c80d38613112ba079c to your computer and use it in GitHub Desktop.
Save ufcpp/62c80d38613112ba079c to your computer and use it in GitHub Desktop.
tuple conversion options
(string name, int age) t = ("Johnny", 29);
/* Covariance */
(object name, int age) t1 = t;
/* Truncation */
(object name) t2 = t;
/* Reordering */
(int age, string name) t3 = t;
/* Renaming */
(string n, int a) t4 = t;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment