hdgarrood / purescript-sequences

Various efficient-ish sequence types for PureScript.
http://pursuit.purescript.org/packages/purescript-sequences
MIT License
45 stars 22 forks source link

Try to get rid of Measured #9

Closed hdgarrood closed 9 years ago

hdgarrood commented 9 years ago

Perhaps by having

data FingerTree v a
  = Empty (a -> v)
  | Single (a -> v) a
  | ...
hdgarrood commented 9 years ago

Not worth it.