Teach me how can I improve my F# linq2sql seqences here I\'m using linq2sql but I think that I got problems with it.
I have found this very cool project written in F#: https://github.com/fholm/IronJS OSS is very nice, but i need an assembly. I would compile it by my self, but it seems that there is no free IDE to o
The question is simple and. although it is obvious the answer, I had to face a strange situation where the fsh开发者_StackOverflow社区arp told me something a bit strange. Here\'s the story:
Well, I came to understand that F# is able to manage references (some sort of C++ like references). This enables the possibilities to change value of parameters passed in functions and also enables th
this is what i have so far: type u = {str : string} //some type that has some property str (for simplicity, only one)
I\'m trying to pattern match on an exception within its definition. Is something like the following possible using F#\'s exception syntax, or must I subclass Exception?
I am trying to create a complex type and need, at construction time, to perform some actions. So I started writing my code:
In F# interactive, how can I see a list of variables/functions defined in this session? Like a function whos() in python or l开发者_StackOverflow社区s() in R? Thanks.You can probably implement this us
Given a higher-order function like the following: let call (f : unit -> \'a) = f() And another function:
I have a type mapping a class in f# as follows: type MyClass = val myval: 开发者_StackOverflow社区integer