2
votes
1answer
57 views
F# - public literal
Is there a way to define a public literal (public const in C#) on a type? Apparently let bindings in types must be private and the Literal attribute can't be applied to members.
1
vote
2answers
53 views
F# active pattern as non-static member
I'm not sure if non-static public member active patterns are allowed but you can define them without the compiler complaining. If they are allowed what's the syntax for matching against one? The …
2
votes
1answer
52 views
Is there a substitute for Pow in BigInteger in F#?
I was using the Pow function of the BigInteger class in F# when my compiler told me :
This construct is deprecated. This member has been removed to ensure that this
type is binary compatible …
2
votes
2answers
82 views
Why does this F# computation expression give a warning?
This code:
type Result = Success of string
type Tracer() =
member x.Bind(p: Result, rest: (string -> Result)) =
match p with
| Success s -> rest s
let tracer = new Tracer()
let t …
-3
votes
4answers
140 views
Is compilation possible in F#?
i heard that there is no compilation in f#? means F# language is not converted into byte code?
i know that it is conversation type question .. but i want to know that...?
which is better language to …
1
vote
2answers
74 views
Should I use new Type() or just Type() for calling a constructor
Both syntaxes are equivalent (at least I suppose they are).
let o1 = new Object()
or
let o2 = Object()
Which way do you use more often? What about readability issues?
0
votes
6answers
248 views
F# Code in an App_Code subfolder
I have a project with 2 subfolders in the App_code folder, one for VB and one for F# (C# files are in the root). I can access the VB classes just fine (via the namespace) but not the F# code. Has …
0
votes
2answers
159 views
Project Euler Problem 2 in F#
I'm a bit stuck on the last step of getting the solution to problem 2 on Project Euler. This is the source I've gotten so far.
#light
module pe2 (* Project Euler Problem 2 solution *)
open …
5
votes
5answers
260 views
Patterns to mix F# and C# in the same solution
I studied few functional languages, mostly for academical purposes. Nevertheless, when I have to project a client-server application I always start adopting a Domain Driven Design, strictly oop.
A …
1
vote
2answers
106 views
Is F# database programming the same as C# database programming?
For f# to talk to a database, I presume you turn to some code that looks quite a lot like C# code, using some NET libraries (ado.net for example) and quite a lot of imperative code that has, by …
7
votes
6answers
730 views
Can you mix .net languages within a single project?
Can you mix .net languages within a single project? So pre-compiled, I would like to call classes and methods of other source files.
For both web and apps?
In particular I'd be interested in F# …
2
votes
3answers
110 views
F# passing an operator with arguments to a function
Can you pass in an operation like "divide by 2" or "subtract 1" using just a partially applied operator, where "add 1" looks like this:
List.map ((+) 1) [1..5];; //equals [2..6]
// instead of having …
0
votes
1answer
50 views
F# match active pattern as expanded tuple
I get the following error in diff with a red squiggle under Subset.
Type mismatch. Expecting a Range -> Choice but given a Range * Range -> Choice
Is there some sort of type annotation I can …
3
votes
2answers
81 views
Group by with tuples in F#
Suppose I have a list of tupples like these :
[("A",12); ("A",10); ("B",1); ("C",2); ("C",1)]
And I would like to do some kind of groupby how do I handle that?
In pseudocode-SQL it should look …
2
votes
2answers
107 views
F# charting example
I would like to do some basic charting in F# using build in features or a free library.
And I would be very very pleased with a very basic example of it, a pie chart if possible.
Example data :
…
