Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/fsharp/tour.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ You can also create `struct` tuples. These also interoperate fully with C#7/Vis

[!code-fsharp[Tuples](~/samples/snippets/fsharp/tour.fs#L205-L218)]

The preceding sample demonstrates using pattern matching to deconstruct tuples in function parameters, such as `(struct(a, b))`, which extracts the individual elements. For more information about pattern matching and deconstructing tuples, see [Tuples](language-reference/tuples.md).

It's important to note that because `struct` tuples are value types, they cannot be implicitly converted to reference tuples, or vice versa. You must explicitly convert between a reference and struct tuple.

## Pipelines
Expand Down