Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

Collection

Nicolas DI PRIMA edited this page Sep 3, 2016 · 4 revisions

Collection

All elements that can contains 0 to many values are Collection. You can at least perform the following operation on a collection:

  • null: to test if the Collection is empty or not;
  • length: to tell you how much element you have in the Collection.

Sequential

Sequentialis a Collection which also have the following property:

all elements that can sequentially consumed/processed are Sequential.

Typical sequential operations are: take, drop, splitAt, break and span.

Clone this wiki locally