Skip to content

Instantly share code, notes, and snippets.

@vkobel
Created April 24, 2014 13:19
Show Gist options
  • Save vkobel/11254315 to your computer and use it in GitHub Desktop.
Save vkobel/11254315 to your computer and use it in GitHub Desktop.
Join / combine 2 seq into one in F#
let joinseq seq1 seq2 =
seq {
yield! seq1
yield! seq2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment