In F# there are many options for creating data pipelines, for example:
List, Seq and Array.
What data pipeline is preferable from memory usage and performance perspective?
In order to answer this we'll compare performance and memory usage using
different pipelines.
Data Pipeline
In order to me...