<@U6Y33L3ME> I'd say that `Sequence` is at its bes...
# getting-started
a
@edwardwongtl I'd say that
Sequence
is at its best when you have multiple operations chained together, imagine
.dropWhile { .. }.map { }.filter { }
. Using a
List
would create a while loop per operation, meanwhile when using a
Sequence
a single loop is used