Hello,

why I can't define a recursive vector using Data.Vector, like in
the example:

import qualified Data.Vector as V

let fib = 0 `V.cons` (1 `V.cons` V.zipWith (+) fib (V.tail v))

Cheers,
Edgar
_______________________________________________
Haskell mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/haskell

Reply via email to