On 8/31/05, Dinh Tien Tuan Anh <[EMAIL PROTECTED]> wrote: > > >Something like (untested)... > > > >xs <- zipWith ($) forkIO (map (\f -> f x y) funs) > >tids <- sequence xs > > > > > what does "zipWith ($)" do ?
$ is function application, so zipWith ($) will "zip" a list of functions with a list of arguments, by applying the functions to the arguments pair-wise, producing a list of results. /S -- Sebastian Sylvan +46(0)736-818655 UIN: 44640862 _______________________________________________ Haskell-Cafe mailing list [email protected] http://www.haskell.org/mailman/listinfo/haskell-cafe
