[Haskell-cafe] Array functions?

2005-05-03 Thread Daniel Carrera
Hello, I hope these don't turn out to be RTFM questions, but I can't find them in my FM :-) 1) Is there a function to get the ith element from an array? 2) Is there a function to get the index of an entry in an array? I've implemented these two functions below: 1) find 0 (x:xs) = x find n (x:xs)

Re: [Haskell-cafe] Array functions?

2005-05-03 Thread Benjamin Franksen
On Wednesday 04 May 2005 01:26, Daniel Carrera wrote: Hello, I hope these don't turn out to be RTFM questions, but I can't find them in my FM :-) Take a look at this one: http://www.haskell.org/onlinelibrary/standard-prelude.html 1) Is there a function to get the ith element from an array?

Re: [Haskell-cafe] Array functions?

2005-05-03 Thread Daniel Carrera
Hi Ben, Take a look at this one: http://www.haskell.org/onlinelibrary/standard-prelude.html Thanks. What's the Prelude ? 1) Is there a function to get the ith element from an array? From your own implementations I gather you mean 'list', not 'array'. What's the difference? Now, if you happen to