0
votes
1answer
23 views
Can’t get operator overloading to work with Linq Expression Trees
I am creating Linq expression trees from F# that operates on a custom datatype I have. The type is a very simple discriminated union that has the usual arithmetic operators overloa …
0
votes
1answer
34 views
Best F# IDE for a Mac
I'm trying to convince a friend of mine to switch from OCaml to F#, however they are programming on a Mac. What is the best F# development experience on top of OS X?
From looking …
5
votes
5answers
306 views
What kind of problem is more easily solved with F# than C#? [closed]
Possible Duplicates:
When does it make sense to use F# over C# or VB.NET?
What are the benefits of using C# vs F# or F# vs c#?
DUPLICATES
http://stackoverflow.com/quest …
2
votes
3answers
100 views
Is there an equivalent to creating a C# implicit operator in F#?
In C# I can add implicit operators to a class as follows:
public class MyClass
{
private int data;
public static implicit operator MyClass(int i)
{
return new …
1
vote
2answers
35 views
F# syntax for P/Invoke signature using MarshalAs
I'm unsure of the syntax for this. I'm trying to translate this C# code into F#.
struct LASTINPUTINFO
{
public uint cbSize;
public uint dwTime;
}
public class IdleTimer
…
4
votes
1answer
46 views
In F#. Is it possible to overload constructor of an abstract type?
If yes could you give an example of a type with parameterless and "parameterfull" constructor.
Is that something you would recommend using or does F# provide some alternative more …
3
votes
1answer
82 views
Difference between these two syntaxes
type IFooable =
abstract Foo : int -> int
type IFooable2 =
abstract Foo : a : int -> int
type MyClass() =
interface IFooable2 with
member this.Foo(b) = 7
…
4
votes
1answer
86 views
Easy way to access private fields/methods/properties using f# interactive
F# interactive is a powerful development tool as it allows to run either WinForm or Wpf window and invoke arbitrary code in there.
This gives a way for a 'try-before-you code' app …
0
votes
3answers
82 views
F# type extensions in C# project: System.Runtime.CompilerServices.Extension missed?
Hi ;)!
I'm diving into F# and it's very fascinating. I'm trying to marry Optional Types and C# like here. Pretty interesting thing... however I miss something important I guess:
…
1
vote
7answers
259 views
Good F# Programming Books
DUPLICATES
http://stackoverflow.com/questions/62302/whats-a-good-book-for-learning-f
http://stackoverflow.com/questions/304496/f-programming-books
F# looks cool and i'd like to …
2
votes
2answers
158 views
F# interactive development
Coming from a Matlab and R background where the development process is very interactive (select, run selection, fix, select, run selection, fix, etc), I'm trying to figure out how …
0
votes
4answers
116 views
F#: Remove the first N characters from a string?
I'm trying to write some code to remove the first N characters in a string. I could have done this in an imperative manner already, but I would like to see it done in the spirit of …
0
votes
2answers
142 views
How to use F# with mono on linux?
Finding an anser to this seems near impossible, so give it to me!
0
votes
3answers
89 views
Expression To Test That All Items In Sequence Are The Same
Hi all,
Is there a multiple instances pattern in F# somewhere?
Consider that I'm working on a list. I have the following pattern matching
match l with
| [] | [_] -> l //if …
3
votes
5answers
273 views
Your experiences with Matlab/F#/R for data analysis and modeling algorithms
I've been using F# for a while now to model algorithms before coding them in C++, and also using it afterwards to check the results of the C++ code, and also against real-world rec …
