Re: scoped tyvar

2006-10-17 Thread TOPE KAREM
Hi, After downloading Haskell 98 (current version), I tried to load stdm by typing :load stdm I kept gettin command line could not find module 'stdm' Iadded path under system variables under environment variables like this: control panel/system/Aadvanced/(under system variable)Environment

scoped tyvar

2006-10-16 Thread Bulat Ziganshin
Hello glasgow-haskell-users, should the following work in 6.6? -- | Alloc the mutable byte vector having `elems` elements of required type allocUnboxed :: (STorIO m s, Integral elems, Unboxed a) = elems - m (MUVec s a) allocUnboxed elems :: m (MUVec s a) = -- it's line 149

RE: scoped tyvar

2006-10-16 Thread Simon Peyton-Jones
[mailto:[EMAIL PROTECTED] | Sent: 16 October 2006 17:16 | To: glasgow-haskell-users@haskell.org | Cc: Simon Peyton-Jones | Subject: scoped tyvar | | Hello glasgow-haskell-users, | | should the following work in 6.6? | | -- | Alloc the mutable byte vector having `elems` elements of required type