Skip to content

Commit

Permalink
Right. Thanks, Jagadish. seqs are indeed indexable.
Browse files Browse the repository at this point in the history
  • Loading branch information
John Gabriele committed Nov 14, 2012
1 parent ff9617a commit 022711f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions articles/tutorials/introduction.md
Expand Up @@ -534,9 +534,9 @@ and maps:
(We cover `apply` in the [Bread and Butter
functions](#bread_and_butter_functions) section.)

If you need to convert to a sequential collection (list or vector),
but don't need to access by index, you can use `seq` instead of `vec`
(to convert to a generic non-indexable list-like ("sequential") data
If you need to convert to a sequential collection but don't need fast
random access to items via index, you can use `seq` instead of `vec`
(to convert to a generic linked-list-like ("sequential") data
structure). More about `seq` when we get to [Laziness](#laziness).

> By the way, you may have noticed a pattern here: longer function
Expand Down

0 comments on commit 022711f

Please sign in to comment.