Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions doc/src/base/collections.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Collections and Data Structures

_If you are new to Julia and not sure where to start:_

Julia has
* [`Arrays`](@ref lib-arrays) (1-dimensional Arrays are known as Vectors, 2-dimensional as Matrices)
* [`Dictionaries`](#Dictionaries)
* [`Sets`](#Set-Like-Collections)
* [`Tuples`](@ref Tuples)

## [Iteration](@id lib-collections-iteration)

Sequential iteration is implemented by the [`iterate`](@ref) function.
Expand Down