Tagged Questions

0
votes
2answers
24 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 …
2
votes
3answers
111 views

How do you curry the 2nd (or 3rd, 4th, …) parameter in F# or any functional language?

I'm just starting up with F# and see how you can use currying to pre-load the 1st parameter to a function. But how would one do it with the 2nd, 3rd, or whatever other parameter? Would named …
1
vote
1answer
72 views

Running F# on Mono [closed]

Possible Duplicate: How to get F# working with Mono? Will future versions of F# be made available for Mono? Is the current version?
0
votes
1answer
65 views

This F# code is not working

This is not working... I get error FS0001: The type 'string' is not compatible with the type 'seq' for the last line. Why? let rec Parse (charlist) = match charlist with | head :: tail -> …
5
votes
4answers
157 views

In F# what does the >> operator mean?

I noticed in some code in this sample that contained the >> operator: let printTree = tree >> Seq.iter (Seq.fold (+) "" >> printfn "%s") What does the >> operator mean/do? Thanks …
1
vote
1answer
83 views

A Simple Wrapper for F# to do matrix operations

Hi there! This is a relatively long post. F# has a matrix and vector type(in PowerPack not in the Core) now. This is great! Even Python's numerical computing ability is from the third part. But the …
0
votes
3answers
84 views

Distributing F# based libraries

I have a program written c# that references an assembly written in F#. If I want to distribute it, I need to include the FSharp.Core.dll assembly right? (Assuming the user didn't install F# already) …
3
votes
2answers
73 views

Void in constrast with Unit

I would like to understand which is the difference between these two programming concepts. The first represents the absence of data type and at the latter the type exists but there is no information. …
3
votes
4answers
93 views

a timeit function for F#

I am trying to write something like let timeit (x:'a->'b) = let start = System.DateTime.Now x let duration = System.DateTime.Now - start printfn "time usage = %A" …
7
votes
3answers
228 views

Coding Practice for F#

I have been dabbling with F# in Visual Studio 2010. I am a developer with more code/architecture design experience in object oriented languages such as C# and Java. To expand my skillset and help …
7
votes
5answers
296 views

In Functional Programming, is it considered a bad practice to have incomplete pattern matchings

Is it generally considered a bad practice to use non-exhaustive pattern machings in functional languages like Haskell or F#, which means that the cases specified don't cover all possible input cases? …
1
vote
2answers
61 views

F# Unit of Measure, Casting without losing the measure type

Is there built in version of the type casting functions that preserves units and if not how would I make them? So for example with this code how would I cast intWithSecondsMeasure to a float without …
1
vote
1answer
95 views

list comprehension in F#

I am trying to do some list comprehension in F#. And I found this. let evens n = { for x in 1 .. n when x % 2 = 0 -> x } print_any (evens 10) let squarePoints n = { for x in 1 .. n …
2
votes
2answers
87 views

f# List.first deprecated, what is the new method.

I am porting over some old F# code from CTP 1.9.6.8 The code uses List.first: List.first (fun x -> if x.Date = d then Some(x) else None) List.first has been deprecated. What is the current …
1
vote
3answers
128 views

Good realworld (open source) examples of F# (to read and learn) [closed]

Possible Duplicates: F# open source projects F# “real world” apps? Open source F# programs as examples for learning I'm reading the new F# book, and it's all neat and nice to …

1 2 3 4 5 42 next
15 30 50 per page