Quellcode durchsuchen

add inspiration resources.

Lucas Stadler vor 11 Jahren
Ursprung
Commit
0582f53b92
1 geänderte Dateien mit 9 neuen und 0 gelöschten Zeilen
  1. 9 0
      hs/DataStructures.hs

+ 9 - 0
hs/DataStructures.hs

@ -1,3 +1,12 @@
1
{-|
2
    Module: DataStructures
3
    Description: Having fun with (functional) data structures
4
5
    Inspired by:
6
7
      * Purely Functional Data Structures, by Chris Okasaki
8
      * <http://www.infoq.com/presentations/Functional-Data-Structures-in-Scala Functional Data Structures in Scala>, by Daniel Spiewak
9
-}
1 10
module DataStructures where
2 11
3 12
import Prelude hiding (concat, drop, last, length, reverse, take)