F# is a succinct, expressive and efficient functional and object-oriented language for .NET which helps you write simple code to solve complex problems.
1
vote
1answer
35 views
How to perform multiple styles of pattern matching?
Just started to play with F#. As terrible as I'm with it now, I do not to know to search for a similar thread too.
This is what I'm trying to do:
let test animal =
if animal :? Cat //testing for ...
0
votes
2answers
60 views
F# equivalent of `is` keyword in C#?
My first F# day. If I have this:
let cat = Animal()
Now how do I check at later stage if cat is Animal?
In C#
bool b = cat is Animal;
In F#?
1
vote
1answer
79 views
F# Pattern-matching by type
How pattern-matching by type of argument works in F#?
For example I'm trying to write simple program which would calculate square root if number provided or return it's argument otherwise.
open ...
2
votes
1answer
108 views
Option type benchmark using F#
I need to use Some/None options in heavy numerical simulations. The following micro benchmark gives me Fast = 485 and Slow = 5890.
I do not like nulls and even if I liked them I cannot use null ...
2
votes
1answer
75 views
Async Exception Handling in F#
I am trying to write non-blocking code in F#. I need to download a webpage, but sometime that webpage doesn't exist and an exception is thrown (404 Not Found) by AsyncDownloadString. I tried the code ...
2
votes
1answer
64 views
Freebase Countries using F#
I'm trying to iterate through the list of Freebase countries as follows:
#r @"..\packages\FSharp.Data.1.1.4\lib\net40\FSharp.Data.dll"
open FSharp.Data
FreebaseData.GetDataContext().``Time and ...
1
vote
1answer
25 views
Unit tests appear in xUnit GUI (xunit.gui.clr4.exe) but not VS 2012 Test Explorer
I have an F# Class Library with the "xUnit.net" and "xUnit.net Runners" packages installed using NuGet. I have the following code:
module XUnitTest
open Xunit
[<Fact>]
let Test () =
do ...
-3
votes
1answer
121 views
Why are strings classified as immutable values?
Why are strings classified as immutable values?
[|'H';'i'|].[1] <- 'o'
0
votes
1answer
37 views
F# MVC Json Result, on the client empty object after Ajax call
I have a F# mvc app, and I am trying to get ajax call into and endpoint that will return a list of people, which will then display in a table.
type Person(credits:int, name:string, ...
1
vote
1answer
67 views
FParsec failing on many
I have this test program:
open FParsec
let test p str =
match run p str with
| Success(result, _, _) -> printfn "Success: %A" result
| Failure(errorMsg, _, _) -> printfn ...
0
votes
1answer
66 views
F# selecting a single value in an array
I am diving into F# for the first time, trying to follow Luca's example found here.
I am doing pretty well parsing an input file, but I am stuck in trying to filter my sequence based on the value of 1 ...
-1
votes
2answers
63 views
How can explain the F# type casting output?
I had a problem about F# type casting. Here is the code.
type Person() =
abstract member SayMe : unit -> unit
default u.SayMe() = printfn "Hi, I am a person."
type Student() =
inherit ...
3
votes
2answers
139 views
Function in Discriminated Union Constraining the Type of a Generic Parameter
I am trying to port some Haskell code to F# and I am getting a strange error I don't know how to get around. I have a discriminated union with a function defined as below:
type OtherType =
...
2
votes
1answer
67 views
Couchbase queries using composite keys in F#
How would one translate the following composite key query:
?stale=false&connection_timeout=60000&limit=10&skip=0&startkey=["Default",{}]&endkey=["Default"]&descending=true
...
2
votes
1answer
78 views
Why are all my functions being run even though I'm only calling one function in one module?
I have the following code in a Test.fs file:
namespace Testing
module test1 =
let Run =
printfn "Test1"
module test2 =
let Run =
printfn "Test2"
In my Program.fs I am ...
2
votes
2answers
98 views
Immutable Dictionary Vs Dictionary Vs C5 Vs F# - performance
Our application uses plenty of dictionaries which have multi level lookup that are not frequently changing. We are investigating at converting some of the critical code that does a lot of lookup using ...
2
votes
1answer
95 views
F# System.TypeInitializationException… why?
I'm attempting to make a gui application in F# that uses a dialog box to open a file
however whenever I try to use it, the program crashes with that exception
here's my code:
let openAndDrawChart e = ...
1
vote
1answer
94 views
Why is this function saying “Only simple variable patterns can be bound in 'let rec' constructs”?
I am just getting started with F# and am trying Problem Euler problem #3. To find primes I came up with the following code to compute all primes up to a maximum number:
let rec allPrimes foundPrimes, ...
1
vote
1answer
93 views
Linq Include helper function for f# style pipelining
I want to eagerly load some records from and their relations from the database something like this:
let getEmails() =
let emails =
(query { for q in entities.QueueItems do
...
0
votes
1answer
50 views
value of CustomEquality and CustomComparison
I understand the value of asserting
[<StructuralEquality;StructuralComparison>]
This statically forces equality and comparison constraints to be derived structurally, and have a nice side ...
0
votes
3answers
89 views
instance method warning in F#
This code works
type UserNode(myid:int64, labeled:bool) =
static member SkypeId (x:UserNode) = x.SkypeI
member this.SkypeI = myid
Yet this one does not : "SkypeId is not an instance ...
2
votes
0answers
83 views
Farseer, MonoGame, ball does not bounce
I have successfully integrated Farseer for XNA into MonoGame with little to no trouble. Stacking, complex dynamics, etc. all seem to be working fine, but I absolutely cannot make a ball bounce on a ...
0
votes
1answer
82 views
Function type inferences in match
Please, could someone explain why here the function type is inferred to be string -> string?
let myFunc a:string =
match a with
| "A" -> 1
| _ -> 0
This works fine when the ...
0
votes
1answer
78 views
Compiling Fsharp with Mono Amazon EC2
When I try to compile F# in a standard way :
./autogen.sh --prefix=/opt/mono && make && make install
it fails with:
ilwrite: TIME 35.286 (total) 0.000 (delta) - Build ...
1
vote
0answers
167 views
F# much slower than Ocaml for handling complex keys like int*int*int in data structures
I have converted an Ocaml program into F#, and overall performance is the same as Ocaml.
However, in order to get to this point, I had try replace exceptions by Option values.
The program works a ...
1
vote
1answer
75 views
Parsing the full input twice
To achieve case-insensitive infix operators using OperatorPrecedenceParser, I'm preprocessing the input, parsing it as text delimited by string literals. The text portion is then searched for infix ...
2
votes
2answers
102 views
When executed will this be a tail call?
Once compiled and ran will this behave as a tail call?
let rec f accu = function
| [] -> accu
| h::t -> (h + accu) |> f <| t
Maybe there is an easy way to test behavior that I'm ...
3
votes
2answers
100 views
How to write an infix function
Is there a way to write an infix function not using symbols? Something like this:
let mod x y = x % y
x mod y
Maybe a keyword before "mod" or something.
1
vote
1answer
105 views
F# break from while loop
There is any way to do it like C/C#?
For example (C# style)
for( int i=0; i<100; i++)
{
if(i==66)
break;
}
2
votes
2answers
112 views
Any problems if discriminated union has lots of options?
Yes, a trivial question, but I couldn't find an expert opinion on it.
I am using computation expressions to sequence server-side processes. It helps me tremendously when my functions have the same ...
3
votes
2answers
92 views
Can this be done with FParsec?
As a follow-on to: How do I test for exactly 2 characters with fparsec?
I need to parse a string that consists of pairs of identifiers followed by freeform text. I can easily construct a parser that ...
4
votes
2answers
82 views
Parsing date and time with FParsec
Within a simple query language I'd like to recognize date and time literals, preferably without using delimiters. For example,
CreationDate = 2013-05-13 5:30 PM
I could use a combinator to detect ...
2
votes
1answer
99 views
if requires an else clause
I have essentially the following code in a function, and I would like to eliminate the duplication of doSomethingElse():
fun a ->
if a = b then
let c = expensiveOperation()
if ...
3
votes
1answer
78 views
How do I test for exactly 2 characters with fparsec?
I have the following program that runs. It takes a line of text and splits it into two parts, the first is an identifier and the second is the remainder of the line. My parser for the identifier ...
6
votes
1answer
125 views
Why does Fsharp Interactive allow mutable variables to be captured by closures?
Using an example from Chris Smith's Programming F# 3.0:
let invalidUseOfMutable() =
let mutable x = 0
let incrementX() = x <- x + 1
incrementX()
x;;
This fails as expected:
...
0
votes
0answers
72 views
Seperate Function Decleration and Implementation in F# [duplicate]
I have two functions that call each other. In F#, in order for function A to call function B, B must be declared before the declaration of function A.
So when having two functions that call each ...
3
votes
2answers
145 views
F# [<Literal>] causes Invalid Program
I'm trying to match the Empty Guid using a Literal, and I can't figure out what's going on here:
let [<Literal>] EmptyGuid = System.Guid ()
let someFunction () = System.Guid.NewGuid () |> ...
0
votes
0answers
83 views
Connect edge.js + node-webkit [closed]
Edge.js connects node.js and .NET. Node-webkit is an app runtime based on Chromium and node.js. Has anybody put these two together? Is it possible?
Explanation: I would like to write apps with ...
2
votes
2answers
139 views
F# inferred types in If/Then
If I have the following function:
let myFunc x y =
if y = 0 then 1
x
I get the error:
Program.fs(58,17): error FS0001: This expression was expected to have type
unit
but here has type
...
1
vote
2answers
87 views
Attributes and let statements in type members
I am using FsUnit to write some unit tests in F# and I have noticed some odd behaviour around attributes and let statements in type members and was wondering if anyone could explain it?
If I write a ...
0
votes
1answer
71 views
Rename file name in F# and Visual Studio 2012 does not work
Create new F# Console project
Rename Program.fs to program.fs
Close Visual Studio
Reopen Visual Studio and the Console project
The file name is back to Program.fs
How can I rename that file? I have ...
2
votes
1answer
94 views
Publish website in FAKE (F# Make)
Is is possible to publish a website instead of building it as part of a FAKE script?
Thanks.
0
votes
0answers
116 views
Why does HttpContext.Current.Request.InputStream always have length 0?
Sorry, but I don't have a better description of my problem. I'll edit the post if I discover something.
I am building an F#-C# MVC4 application (in Windows 8, using Visual Studio 2012 Express for ...
0
votes
3answers
83 views
F# web service data provider with local wsdl file
I am trying to write F# client for our web services. The example here looks very good except it uses the server url in the code.
type TerraService = ...
4
votes
1answer
133 views
How do I get TypeProviders to work on Xamarin/Monodevelop
I want to play around with type providers in F# on mono but I can't get it to work in xamarin studio.
I see that the error is that the namespace TypeProviders is not defined, but where do I find it ...
0
votes
3answers
168 views
most idiomatic way to implement recursive list comprehension in F#
the question in short: What is the most idiomatic way to do "recursive List comprehension" in F#?
more detailed: As I have learned so far (I am new to F#) we have essentially the following tools to ...
3
votes
0answers
109 views
how to represent functional language debug information in llvm source level debug information?
I am developing a llvm frontend for a language based on F#, a functional language. Well, the functional language matches the concept of value, not variable. F# also support variable by so called ...
4
votes
1answer
198 views
Xamarin studio fails to open F# files
I've just installed Xamarin studio to try out the F# experience on OSX. The install works fine and I'm able to create the F# tutorial project, but when it tries to open the Tutorial.fs file I get the ...
2
votes
1answer
84 views
How to use breakpoints in F# files in C#/F# MVC4?
I am in the middle of a rather large project that uses the C#-F# MVC4 template. The template breaks up the solution into two projects: [ProjectName]Web and [ProjectName]WebApp. All of the F# code ...
0
votes
1answer
116 views
Decompile a simple recursive function and get a loop with unnecessary code
I would like to see if the following 2 simple recursive function would perform as well as C# versions, so I decompiled them into C# using ILSPY.
let rec findPivot i =
if i = 0 then -1
...




