Skip to content

Instantly share code, notes, and snippets.

@KanagawaMarcos
Created January 24, 2022 19:54
Show Gist options
  • Save KanagawaMarcos/484db024c480369a8c2b58de338d7a38 to your computer and use it in GitHub Desktop.
Save KanagawaMarcos/484db024c480369a8c2b58de338d7a38 to your computer and use it in GitHub Desktop.
How to flattern a seq of seq in F#
let flattered = seq {
for singleSeq in seqOfSeq do
yield! singleSeq
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment