Google News
logo
F# - Interview Questions
What are the Tuples in F#?
A tuple is a grouping of unnamed but ordered values, possibly of different types. Tuples can either be reference types or structs.
 
Syntax :
(element, ... , element)
struct(element, ... ,element )
Advertisement