Tagged Questions

1
vote
2answers
39 views

Does F# really allow specifying which functions to be inlined in code?

When I am reading F# stuff, they are talking about inlining methods, but I thought .NET didn't expose this functionality to programmers. If it's exposed then it has to be in the IL? And so can C# make …
1
vote
1answer
121 views

Is F# faster than C# in runtime performance? [closed]

I read it here that states it is. Just want to know the general consensus on it, if there is any? If F# is indeed faster, then is it because of the runtime guarantees that the immutable types have?
29
votes
12answers
972 views

Why did you decide “against” using Erlang?

Have you actually "tried" (means programmed in, not just read an article on it) Erlang and decided against it for a project? If so, why? Also, if you have opted to go back to your old language, or to …
1
vote
2answers
61 views

‘mutable’ in type definition

Why is disabled types like type t = A of int | B of string * mutable int while such types are allowed: type t = A of int | B of string * int ref
1
vote
3answers
76 views

Case Insensitive Pattern Matching over String Lists

I'm trying to parse command line arguments in an F# application. I'm using pattern matching over parameters list to accomplish it. Something like: let rec parseCmdLnArgs = function | [] -> { …
1
vote
4answers
152 views

How does TDD compare with Functional Programming Languages?

How does TDD compare with Functional Programming Languages like F# and Erlang? I haven't actually worked directly with a functional programming language yet, but from what I've seen of it, you have …
0
votes
2answers
69 views

Trouble referencing an f# dll in a c# project

Forgive me if the answer seems obvious. I created a Visual Studio solution and added two projects to it, one an f# Library (called MathLibrary) and the second, a c# frontend (called frontend, I'm …
2
votes
5answers
128 views

Does F# have generic arithmetic support?

Does F# have the same problem as C# where you can't directly use arithmetic operators with generic T types? Can you write a generic Sum function that would return the sum of any value that supports …
3
votes
4answers
161 views

Does F# have free functions?

Does every function has to be inside a type like in C#? Or does F# has free functions? Also what about functions I have seen all over some F# code like, cos, sin, etc. Are they calls to Math.Cos, …
-3
votes
5answers
178 views

F#/J#/Java? Eh? [closed]

Can somebody please tell me what exactly the f# language is useful for? And one thing I'm really interested in is - is F# a better suit for Messaging/Communication than C#? Correct me if I'm wrong. …
1
vote
1answer
35 views

Hosting .fsx scripts inside larger applications

I want to expose my F# libraries as a scriptable tool for data manipulation. Optimally, I want this scripting facility to not require a full F# install with fsi and so on. Is there a way to link …
0
votes
2answers
76 views

Is the MailboxProcessor type a replacement for locks?

I have been slowly examining all of the features that F# brings to the table. One that has particularly piqued my interest is the MailboxProcessor. The equivalent of this in C# would most likely use …
5
votes
1answer
62 views

Guarantee order of messages posted to mailbox processor

I have a mailbox processor which receives a fixed number of messages: let consumeThreeMessages = MailboxProcessor.Start(fun inbox -> async { let! msg1 = inbox.Receive() …
21
votes
2answers
335 views

Is F# really faster than Erlang at spawning and killing processes?

Updated: This question contains an error which makes the benchmark meaningless. I will attempt a better benchmark comparing F# and Erlang's basic concurrency functionality and inquire about the …
1
vote
4answers
97 views

F# pattern matching on types of tuples

I have a curried function that I'd like it to support different types of parameters, that are not on a inheritance relationship: type MyType1 = A | B of float type MyType2 = C | D of int What I …

1 2 3 4 5 50
15 30 50 per page