Data Structures: Arrays!

Throughout July we've been exploring different data structures in Haskell. I started out with a general process called 10 Steps for understanding Data Structures in Haskell. And I've now applied that process to five structures in Haskell:

  1. Lists
  2. Sets
  3. Maps
  4. Hash Sets
  5. Hash Maps

Today we're going to start exploring some lesser-known structures in Haskell. Today's new structure is Arrays. While these are commonplace in other languages, you don't see them as often in Haskell, and Haskell's array behavior is a bit different from what you'll see elsewhere. So head over to the article page to read about it!

Previous
Previous

Data Structures: Vectors!

Next
Next

Data Structures: Hash Maps!