BowenFu / hspp

hspp: An experimental library to bring Haskell Style Programming to C++.
https://bowenfu.github.io/hspp
Apache License 2.0
157 stars 0 forks source link

Implement CycleView. #96

Closed BowenFu closed 1 year ago

BowenFu commented 1 year ago

// TODO: Add CycleView // ghci> take 10 (cycle [1,2,3]) // [1,2,3,1,2,3,1,2,3,1] // ghci> take 12 (cycle "LOL ") // "LOL LOL LOL