Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Mastering F#

You're reading from   Mastering F# A comprehensive and in-depth guide to writing functional programs using F#

Arrow left icon
Product type Paperback
Published in Nov 2016
Publisher
ISBN-13 9781784393434
Length 264 pages
Edition 1st Edition
Languages
Arrow right icon
Authors (2):
Arrow left icon
Suhaib Fahad Suhaib Fahad
Author Profile Icon Suhaib Fahad
Suhaib Fahad
Alfonso García-Caro Núñez Alfonso García-Caro Núñez
Author Profile Icon Alfonso García-Caro Núñez
Alfonso García-Caro Núñez
Arrow right icon
View More author details
Toc

F# Collections

F# core library has a set of collections and wrapper functional style modules that are useful. In this chapter, we will go through the basic list of collection modules with examples and understand their inner workings.

The following is a basic list of collection modules:

  • Seq: This performs basic operations on any collection implementing IEnumerable<'T>
  • Array: This performs basic operations on Array collections
  • List: This performs basic operations on List collections
  • Map: This performs functional style operators for the Map type
  • Set: This performs functional style operators for the Set type

Sequence

Sequence is a logical series of elements of the same type. Sequences are lazy in nature and always iterate a single element at any given time, so it has better performance over large collections when compared to arrays or lists. Sequences are basically the .NET IEnumerable<'T> collections that have an alias seq<'T> type in F#. The Seq module provides several...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime