Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 1.23 KB

README.md

File metadata and controls

38 lines (25 loc) · 1.23 KB

Okasaki's Functional Data Structures in Haskell

Build Status

Data structures from Okasaki's book in Haskell along with tests - so that you can implement and check your solutions.

List of data structures:

Implementations can be found in solutions branch.

Note: This repo does not contain all of the structures from the book. These are the one which I mostly understood in first reading of the book and which were discussed in my talk at Bangalore functional programming meetup.

Tests:

Tests are in spec directory.

Run individual tests:

stack test --test-arguments "-m "List""

Run all tests:

stack test