0
votes
1answer
57 views
Haskell map function with where statement in F#
I am trying to port this haskell function to F#
subs :: [a] -> [[a]]
subs [] = [[]]
subs (x:xs) = ys ++ map (x:) ys
where
ys = subs xs
example
…
3
votes
3answers
97 views
Dealing with large files in Haskell
I have a large file (4+ gigs) of, lets just say, 4 byte floats. I would like to treat it as List, in the sense that I would like to be able to use map, filter, foldl, etc. However, instead of …
1
vote
3answers
108 views
Haskell List Comprehensions guards in F#
What is a way to implement similar functionality in Haskell of List comprehensions with guards in F#
for example:
factors :: Int -> [Int]
factors = [x | x <-[1 .. n], n 'mod' x == …
0
votes
8answers
320 views
Python, Ruby, Haskell - Do they provide true multithreading?
We are planning to write a highly concurrent application in any of the Very-High Level programming languages.
1) Do Python, Ruby, or Haskell support true multithreading?
2) If a program contains …
2
votes
6answers
156 views
Convert list of Integers into one Int (like concat) in haskell
Pretty much what the title says. I have a list of Integers like so: [1,2,3]. I want to change this in to the Integer 123. My first thought was concat but that doesn't work because it's of the wrong …
3
votes
1answer
47 views
Using stdout/stderr/stdin streams behind haskell’s FFI
I'm developing a small haskell program that uses an external static library I've developed in C++. It accesses the lib through ghc's FFI (foreign function interface). Inside this library I would like …
1
vote
2answers
95 views
Haskell to F# - declare a recursive types in f#
I am trying to teach my self F# by porting some Haskell Code.
Specifily I am trying to port the Countdown Problem shown here
The Haskell Code is listed here
I am trying to create the following …
0
votes
2answers
67 views
How to make an unboxed array of floats I can get a Ptr to
I am trying to do some work with HopenGL and I need a Ptr that points to a array of floats. From what I have read uarray and storableArray seem to be the way to go, in some combination some way.
0
votes
1answer
46 views
haskell chuncked http reading
Here's the next practical question.
I want to download some big files from http server(database updates). This operation should block user UI, preventing him from inputting data. SO the problem is to …
1
vote
3answers
87 views
Having trouble writing my fmap
I am trying to write an fmap for this type
data Triangle a = Triangle {t0 :: Point a, t1 :: Point a, t2 :: Point a}
where Point is defined as
data Point a = Point {px :: a, py :: a, pz :: a}
…
0
votes
2answers
102 views
Getting Cabal to work with GHC 6.12.1
I've installed the latest GHC package (6.12.1) on OS X, but I can't get Cabal to work. I've removed the version I had previously that worked with GHC 6.10 and tried to re-install from scratch. The …
4
votes
1answer
145 views
Haskell to Clojure
I am going over this haskell lecture on count down game, i don't know any haskell but i am intrested in the problem, i am trying to port his code to clojure.
this is the part i got stuck must be …
3
votes
4answers
126 views
What are some good books for learning Haskell (and/or OCaml/ML) in particular, and functional programming style in general?
I was spoiled by the excellence of "Programming Ruby" when I was in high school, and ever since I've always looked for a combined introduction & language reference book for every new language I …
3
votes
3answers
166 views
How long does it take to create 1 million threads in Haskell?
What I understand, Haskell have green threads. But how light weight are they. Is it possible to create 1 million threads?
Or How long would it take for 100 000 threads?
2
votes
1answer
101 views
Adding deriving (Data) to standard types
I would like to add deriving (Data) to standard types. After enabling the StandaloneDeriving, FlexibleContexts, DeriveDataTypeable, and UndecidableInstances extensions, ghc accepts
deriving instance …
