active questions tagged f# - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T14:45:07Zhttp://stackoverflow.com/feeds/tag/f#http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1398611/f-ununit-reunit-inside-a-function2F# Ununit - reunit inside a functionBenjol2009-09-09T09:43:32Z2009-12-08T13:05:59Z
<p><em>This question is closely related to these ones (<a href="http://stackoverflow.com/questions/412459/how-to-generically-remove-f-units-of-measure">1</a>, <a href="http://stackoverflow.com/questions/419521/f-units-of-measure-lifting-values-to-floatsomething">2</a>, <a href="http://stackoverflow.com/questions/460766/f-units-of-measure-problems-with-genericity">3</a>)</em></p>
<p>I'm using an external library which doens't (yet) handle units of measure. I want to be able to 'ununit' values before I pass them in, then 'reunit' them when I get the results back.</p>
<p>The catch is that I'd like to avoid being forced to declare WHICH units in advance.</p>
<p>Example snippet</p>
<pre><code>let ExternalNonUnitAwareFunction s = s + 1.
let MyUnitAwareClient (s:float<'u>) = //'
//1. this option "flattens" to no unit, or fixes to first inferred unit
//let (unit:float<'u>) = 1.0<_>
//2. this works fine, except for 0!
let unit = s / (float s)
s |> float |> ExternalNonUnitAwareFunction |> (*) unit
</code></pre>
<p>I haven't managed to work out how to handle this one...</p>
<p><strong>Update</strong>
If I have <a href="http://channel9.msdn.com/posts/Charles/Andrew-Kennedy-F-Units-of-Measure/" rel="nofollow">understood correctly</a>, the final version of F# will include functions to do this.</p>
http://stackoverflow.com/questions/40845/how-do-f-units-of-measure-work4how do F# Units of Measure workEmperor XLII2008-09-02T22:37:37Z2009-12-08T13:02:38Z
<p>Has anyone had a chance to dig into how <a href="http://blogs.msdn.com/andrewkennedy/archive/2008/08/20/units-of-measure-in-f-part-one-introducing-units.aspx" rel="nofollow">F# Units of Measure</a> work? Is it just type-based chicanery, or are there CLR types hiding underneath that could (potentially) be used from other .net languages? Will it work for any numerical unit, or is it limited to floating point values (which is what all the examples use)?</p>
http://stackoverflow.com/questions/1775056/creating-silverlight-3-applications-with-f1Creating Silverlight 3 applications with F#Reshure2009-11-21T09:49:57Z2009-12-08T12:04:58Z
<p>Is there an easy way to create Silverlight 3 applications with F# (October CTP)?
I have seen the <a href="http://code.msdn.microsoft.com/fsharpsilverlight" rel="nofollow">F# for Silverlight</a>, but that only works with the May CTP.</p>
<p>I am using Visual Studio Integrated Shell 2008.</p>
http://stackoverflow.com/questions/1866231/f-signature-file-error2F# signature file errorjpalmer2009-12-08T11:01:10Z2009-12-08T11:11:44Z
<p>I was trying to use a fsi file to allow mutually recursive classes in separate files, but my fsi file did not compile. Below is a simple example which demonstrates the problem.</p>
<p>File program.fs:</p>
<pre><code>module mod1
type first =
|zero = 0
</code></pre>
<p>File File1.fs:</p>
<pre><code>module mod2
type second =
|zero2 = 0
</code></pre>
<p>Compiling with <code>--sig:signature.fsi</code> produces:</p>
<pre><code>#light
module mod1
type first =
| zero = 0
module mod2
type second =
| zero2 = 0
</code></pre>
<p>Which has an error on the line</p>
<pre><code>type second
</code></pre>
<p>Which is</p>
<pre><code>Error 1 Unexpected keyword 'type' in signature file. Expected ':', '=' or other token.
</code></pre>
http://stackoverflow.com/questions/1839016/f-explicit-match-vs-function-syntax5F# explicit match vs function syntaxBenjol2009-12-03T10:23:45Z2009-12-08T07:03:28Z
<p>Sorry about the vague title, but part of this question is what these two syntax styles are called:</p>
<pre><code>let foo1 x =
match x with
| 1 -> "one"
| _ -> "not one"
let foo2 = function
| 1 -> "one"
| _ -> "not one"
</code></pre>
<p>The other part is what difference there is between the two, and when I would want to use one or the other?</p>
http://stackoverflow.com/questions/1865014/f-another-vba-in-office-2F#, another VBA in Office?Yin Zhu2009-12-08T06:33:41Z2009-12-08T06:52:31Z
<p>Hi.</p>
<p>Excel is a great spreadsheet software, a even greater front UI for Business Intelligence in many companies. Often VBA is used to write the extensions, or to call other DLLs. </p>
<p>As Excel itself is functional, F# will company Excel very well to write data analysis procedures. </p>
<p>I am thinking whether F# or a variant of F# will become next VBA in office. Any news or rumors?</p>
<p>EDIT:
I don't mean to replace VBA in office. I mean F# could be an alternative in Office to write scripts. </p>
http://stackoverflow.com/questions/1856794/how-would-you-convert-this-mutable-tree-into-an-immutable-one2How would you convert this mutable tree into an immutable one?gradbot2009-12-06T22:12:10Z2009-12-08T04:04:15Z
<h2>How would you convert type Node into an immutable tree?</h2>
<p>This class implements a range tree that does not allow overlapping or adjacent ranges and instead joins them. For example if the root node is <code>{min = 10; max = 20}</code> then it's right child and all its grandchildren must have a min and max value greater than 21. The max value of a range must be greater than or equal to the min. I included a test function so you can run this as is and it will dump out any cases that fail. </p>
<p>I recommend starting with the Insert method to read this code.</p>
<pre><code>module StackOverflowQuestion
open System
type Range =
{ min : int64; max : int64 }
with
override this.ToString() =
sprintf "(%d, %d)" this.min this.max
[<AllowNullLiteralAttribute>]
type Node(left:Node, right:Node, range:Range) =
let mutable left = left
let mutable right = right
let mutable range = range
// Symmetric to clean right
let rec cleanLeft(node : Node) =
if node.Left = null then
()
elif range.max < node.Left.Range.min - 1L then
cleanLeft(node.Left)
elif range.max <= node.Left.Range.max then
range <- {min = range.min; max = node.Left.Range.max}
node.Left <- node.Left.Right
else
node.Left <- node.Left.Right
cleanLeft(node)
// Clean right deals with merging when the node to merge with is not on the
// left outside of the tree. It travels right inside the tree looking for an
// overlapping node. If it finds one it merges the range and replaces the
// node with its left child thereby deleting it. If it finds a subset node
// it replaces it with its left child, checks it and continues looking right.
let rec cleanRight(node : Node) =
if node.Right = null then
()
elif range.min > node.Right.Range.max + 1L then
cleanRight(node.Right)
elif range.min >= node.Right.Range.min then
range <- {min = node.Right.Range.min; max = range.max}
node.Right <- node.Right.Left
else
node.Right <- node.Right.Left
cleanRight(node)
// Merger left is called whenever the min value of a node decreases.
// It handles the case of left node overlap/subsets and merging/deleting them.
// When no more overlaps are found on the left nodes it calls clean right.
let rec mergeLeft(node : Node) =
if node.Left = null then
()
elif range.min <= node.Left.Range.min - 1L then
node.Left <- node.Left.Left
mergeLeft(node)
elif range.min <= node.Left.Range.max + 1L then
range <- {min = node.Left.Range.min; max = range.max}
node.Left <- node.Left.Left
else
cleanRight(node.Left)
// Symmetric to merge left
let rec mergeRight(node : Node) =
if node.Right = null then
()
elif range.max >= node.Right.Range.max + 1L then
node.Right <- node.Right.Right
mergeRight(node)
elif range.max >= node.Right.Range.min - 1L then
range <- {min = range.min; max = node.Right.Range.max}
node.Right <- node.Right.Right
else
cleanLeft(node.Right)
let (|Before|After|BeforeOverlap|AfterOverlap|Superset|Subset|) r =
if r.min > range.max + 1L then After
elif r.min >= range.min then
if r.max <= range.max then Subset
else AfterOverlap
elif r.max < range.min - 1L then Before
elif r.max <= range.max then
if r.min >= range.min then Subset
else BeforeOverlap
else Superset
member this.Insert r =
match r with
| After ->
if right = null then
right <- Node(null, null, r)
else
right.Insert(r)
| AfterOverlap ->
range <- {min = range.min; max = r.max}
mergeRight(this)
| Before ->
if left = null then
left <- Node(null, null, r)
else
left.Insert(r)
| BeforeOverlap ->
range <- {min = r.min; max = range.max}
mergeLeft(this)
| Superset ->
range <- r
mergeLeft(this)
mergeRight(this)
| Subset -> ()
member this.Left with get() : Node = left and set(x) = left <- x
member this.Right with get() : Node = right and set(x) = right <- x
member this.Range with get() : Range = range and set(x) = range <- x
static member op_Equality (a : Node, b : Node) =
a.Range = b.Range
override this.ToString() =
sprintf "%A" this.Range
type RangeTree() =
let mutable root = null
member this.Add(range) =
if root = null then
root <- Node(null, null, range)
else
root.Insert(range)
static member fromArray(values : Range seq) =
let tree = new RangeTree()
values |> Seq.iter (fun value -> tree.Add(value))
tree
member this.Seq
with get() =
let rec inOrder(node : Node) =
seq {
if node <> null then
yield! inOrder node.Left
yield {min = node.Range.min; max = node.Range.max}
yield! inOrder node.Right
}
inOrder root
let TestRange() =
printf "\n"
let source(n) =
let rnd = new Random(n)
let rand x = rnd.NextDouble() * float x |> int64
let rangeRnd() =
let a = rand 1500
{min = a; max = a + rand 15}
[|for n in 1 .. 50 do yield rangeRnd()|]
let shuffle n (array:_[]) =
let rnd = new Random(n)
for i in 0 .. array.Length - 1 do
let n = rnd.Next(i)
let temp = array.[i]
array.[i] <- array.[n]
array.[n] <- temp
array
let testRangeAdd n i =
let dataSet1 = source (n+0)
let dataSet2 = source (n+1)
let dataSet3 = source (n+2)
let result1 = Array.concat [dataSet1; dataSet2; dataSet3] |> shuffle (i+3) |> RangeTree.fromArray
let result2 = Array.concat [dataSet2; dataSet3; dataSet1] |> shuffle (i+4) |> RangeTree.fromArray
let result3 = Array.concat [dataSet3; dataSet1; dataSet2] |> shuffle (i+5) |> RangeTree.fromArray
let test1 = (result1.Seq, result2.Seq) ||> Seq.forall2 (fun a b -> a.min = b.min && a.max = b.max)
let test2 = (result2.Seq, result3.Seq) ||> Seq.forall2 (fun a b -> a.min = b.min && a.max = b.max)
let test3 = (result3.Seq, result1.Seq) ||> Seq.forall2 (fun a b -> a.min = b.min && a.max = b.max)
let print dataSet =
dataSet |> Seq.iter (fun r -> printf "%s " <| string r)
if not (test1 && test2 && test3) then
printf "\n\nTest# %A: " n
printf "\nSource 1: %A: " (n+0)
dataSet1 |> print
printf "\nSource 2: %A: " (n+1)
dataSet2 |> print
printf "\nSource 3: %A: " (n+2)
dataSet3 |> print
printf "\nResult 1: %A: " (n+0)
result1.Seq |> print
printf "\nResult 2: %A: " (n+1)
result2.Seq |> print
printf "\nResult 3: %A: " (n+2)
result3.Seq |> print
()
for i in 1 .. 10 do
for n in 1 .. 1000 do
testRangeAdd n i
printf "\n%d" (i * 1000)
printf "\nDone"
TestRange()
System.Console.ReadLine() |> ignore
</code></pre>
<p>Test cases for Range</p>
<pre><code>After (11, 14) | | <-->
AfterOverlap (10, 14) | |<--->
AfterOverlap ( 9, 14) | +---->
AfterOverlap ( 6, 14) |<--+---->
"Test Case" ( 5, 9) +---+
BeforeOverlap ( 0, 8) <----+-->|
BeforeOverlap ( 0, 5) <----+ |
BeforeOverlap ( 0, 4) <--->| |
Before ( 0, 3) <--> | |
Superset ( 4, 10) <+---+>
Subset ( 5, 9) +---+
Subset ( 6, 8) |<->|
</code></pre>
http://stackoverflow.com/questions/1856345/why-arent-f-records-allowed-to-have-allownullliteralattribute2Why aren't F# records allowed to have AllowNullLiteralAttribute?gradbot2009-12-06T19:34:01Z2009-12-06T20:16:16Z
<p>Is there a compiler implementation reason why records can't have the AllowNullLiteralAttribute attribute or is this a chosen constraint?</p>
<p>I do see this constraint force cleaner code sometimes but not always.</p>
<pre><code>[<AllowNullLiteralAttribute>]
type IBTreeNode = {
mutable left : IBTreeNode; mutable right : IBTreeNode; mutable value : int}
with
member this.Insert x =
if x < this.value then
if this.left = null then
this.left <- {left = null; right = null; value = x}
else
this.left.Insert x
else
if this.right = null then
this.right <- {left = null; right = null; value = x}
else
this.right.Insert x
// Would be a lot of boilerplate if I wanted these public
[<AllowNullLiteralAttribute>]
type CBTreeNode(value) =
let mutable left = null
let mutable right = null
let mutable value = value
with
member this.Insert x =
if x < value then
if left = null then
left <- CBTreeNode(x)
else
left.Insert x
else
if right = null then
right <- CBTreeNode(x)
else
right.Insert x
</code></pre>
<p>Added an immutable version for the frown on mutability crowd. It's about 30% faster in this case.</p>
<pre><code>type OBTree =
| Node of OBTree * OBTree * int
| Null
with
member this.Insert x =
match this with
| Node(left, right, value) when x <= value -> Node(left.Insert x, right, value)
| Node(left, right, value) -> Node(left, right.Insert x, value)
| Null -> Node(Null, Null, x)
</code></pre>
http://stackoverflow.com/questions/1855150/randomly-choose-an-instance-from-union-in-f2Randomly choose an instance from union in F#sthiers2009-12-06T11:39:18Z2009-12-06T16:03:07Z
<p>In F#, given</p>
<p><code>type MyType = A | B | C | D | E | F | G</code></p>
<p>How do I randomly define an instance of MyType?</p>
http://stackoverflow.com/questions/1850108/f-always-unexpected-when-keyword5F#: always "unexpected 'when' keyword"Martin2009-12-04T22:35:20Z2009-12-04T22:58:33Z
<p>The VS2010 Beta 2 F# compiler always complains about my usage of the when keyword, even when using copy-pasted code which is supposed to work, such as either of <a href="http://diditwith.net/2008/04/24/YetAnotherProjectEulerSeriesYAPES.aspx" rel="nofollow">these snippets</a>. For instance, this is the error I get when trying to execute a very trivial expression:</p>
<p>"Error FS0010: Unexpected keyword 'when' in expression. Expected '->' or other token. "</p>
<pre><code>[for i in 1..50 when i < 10 -> i]
---------------^^^^
</code></pre>
http://stackoverflow.com/questions/181613/hidden-features-of-f5Hidden Features of F#fung2008-10-08T07:05:58Z2009-12-04T12:43:32Z
<p>This is the unabashed attempt of a similar <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c">C#</a> question.</p>
<p>So what are your favorite F# hidden (or not) features?</p>
<p>Most of the features I've used so far aren't exactly hidden but have been quite refreshing. Like how trivial it is to overload operators compared to say C# or VB.NET.</p>
<p>And Async<T> has helped me shave off some real ugly code.</p>
<p>I'm quite new to the language still so it'd be great to learn what other features are being used in the wild.</p>
http://stackoverflow.com/questions/1844292/hidden-features-of-f2Hidden features of F#? [closed]André Pena2009-12-04T01:22:52Z2009-12-04T02:43:44Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/181613/hidden-features-of-f">Hidden Features of F#</a> </p>
</blockquote>
<p>I pretty much like the hidden features series of StackOverflow and I was eager to discover these features in F#.</p>
<p>What are the best you know?</p>
http://stackoverflow.com/questions/1319894/how-to-retrieve-a-function-name-in-f0How to retrieve a function name in F# ?Stringer Bell2009-08-23T23:42:45Z2009-12-03T17:51:13Z
<p>Consider the code sample:</p>
<pre><code>let foo x = x
let bar f =
printf "function name is %s" (*?*)
bar foo //should print: "function name is foo"
</code></pre>
<p>Thanks a lot !</p>
http://stackoverflow.com/questions/1834923/f-public-literal2F# - public literalDaniel2009-12-02T18:37:06Z2009-12-02T18:46:32Z
<p>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.</p>
http://stackoverflow.com/questions/1830548/f-active-pattern-as-non-static-member1F# active pattern as non-static membergradbot2009-12-02T03:52:58Z2009-12-02T17:05:15Z
<p>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 compiler is giving me a type mismatch for Foo in FooBar2.doSomething. Expecting a <code>'a -> Choice<'b,'c></code> given <code>'a -> 'd -> Choice<unit,unit></code></p>
<pre><code>// No error in this class, static works great
type FooBar() =
static member (|Foo|Bar|) (x, y) =
match x = y with
| true -> Foo
| false -> Bar
member x.doSomething y =
match x, y with
| Foo -> ()
| Bar -> ()
type FooBar2() =
member x.(|Foo|Bar|) y =
match x = y with
| true -> Foo
| false -> Bar
// compiler error on "Foo"
member x.doSomething y =
match y with
| Foo -> ()
| Bar -> ()
</code></pre>
http://stackoverflow.com/questions/1833153/is-there-a-substitute-for-pow-in-biginteger-in-f2Is there a substitute for Pow in BigInteger in F#? Peter2009-12-02T14:15:57Z2009-12-02T14:25:34Z
<p>I was using the Pow function of the BigInteger class in F# when my compiler told me : </p>
<blockquote>
<p>This construct is deprecated. This member has been removed to ensure that this
type is binary compatible with the .NET 4.0 type System.Numerics.BigInteger</p>
</blockquote>
<p>Fair enough I guess, but I didn't found a replacement immediately.</p>
<p>Is there one? Should we only use our own Pow functions? And (how) will it be replaced in NET4.0?</p>
http://stackoverflow.com/questions/1800696/why-does-this-f-computation-expression-give-a-warning2Why does this F# computation expression give a warning?jamesmoorecode2009-11-25T23:37:22Z2009-12-02T06:06:04Z
<p>This code:</p>
<pre><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 = tracer {
let! x = Success "yes!"
let! y = Success "waste of time"
return! Success x
}
printfn "%A" t
</code></pre>
<p>prints <strong>Success "yes!"</strong></p>
<p>But gives a warning that implies that it shouldn't work:</p>
<p><strong>File1.fs(19,3): warning FS0708: This control construct may only be used if the computation expression builder defines a 'ReturnFrom' method</strong></p>
<p>Seems like a strange warning: if it's right, then the code shouldn't work. Is it really just saying that the builder had to synthesize ReturnFrom?</p>
<p>(F# Version 1.9.7.4, compiling for .NET Framework Version v4.0.21006)</p>
http://stackoverflow.com/questions/1829645/is-compilation-possible-in-f-2Is compilation possible in F#? [closed]Sikender2009-12-01T23:20:10Z2009-12-02T02:53:43Z
<p>i heard that there is no compilation in f#? means F# language is not converted into byte code?</p>
<p>i know that it is conversation type question .. but i want to know that...?</p>
<p>which is better language to learn.. C# or F#?</p>
<p>Which version currently used in F#?</p>
http://stackoverflow.com/questions/1829665/should-i-use-new-type-or-just-type-for-calling-a-constructor1Should I use new Type() or just Type() for calling a constructorStringer Bell2009-12-01T23:24:55Z2009-12-02T02:35:27Z
<p>Both syntaxes are equivalent (at least I suppose they are).</p>
<pre><code>let o1 = new Object()
</code></pre>
<p>or</p>
<pre><code>let o2 = Object()
</code></pre>
<p>Which way do you use more often? What about readability issues?</p>
http://stackoverflow.com/questions/304513/f-code-in-an-appcode-subfolder0F# Code in an App_Code subfoldernoblethrasher2008-11-20T06:46:49Z2009-12-01T19:36:51Z
<p>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 anyone had a problem like this and if so how did you fix it?</p>
<p>Addendum:
F# code that is <em>not</em> in the App_Code folder runs just fine. Is is as if the compiler and IDE do not see the F# code that is in a subfolder of the App_Code folder called FS_Code. I have added the codeSubDirectories element</p>
<pre><code><codeSubDirectories>
<add directoryName="VB_Code"/>
<add directoryName="FS_Code"/>
</codeSubDirectories>
</code></pre>
<p>The VB code in the VB_Code subfolder compiles just fine.</p>
http://stackoverflow.com/questions/1563550/project-euler-problem-2-in-f0Project Euler Problem 2 in F#Onorio Catenacci2009-10-13T23:42:35Z2009-12-01T17:24:39Z
<p>I'm a bit stuck on the last step of getting the solution to <a href="http://projecteuler.net/index.php?section=problems&id=2" rel="nofollow">problem 2</a> on Project Euler. This is the source I've gotten so far. </p>
<pre><code>#light
module pe2 (* Project Euler Problem 2 solution *)
open System
let Phi = 1.6180339887;;
let invPhi = 1.0/Phi;;
let rootOfFive = 2.236067977;;
let maxFib = 4000000.0;
let Fib n =
System.Math.Round((Phi**n - invPhi**n)/rootOfFive);;
let FibIndices = Seq.unfold(fun i -> Some(i, i+3.0)) 3.0;;
let FibNos = FibIndices |> Seq.map(fun index -> Fib(index));;
let setAllowedFibNos = FibNos |> Seq.filter(fun fn -> (fn <= maxFib));;
// let answer = setAllowedFibNos |> Seq.fold (+) 0.0;
</code></pre>
<p>When I uncomment the last line, the process never seems to finish. So I was hoping that someone could give me a gentle nudge in the right direction. I did look at setAllowedFibNos and it looks right but it's also an infinite sequence so I only see the first three terms.</p>
<p>Also, could someone point me to the right way to chain the various sequences together? I tried something like this:</p>
<pre><code>let answer = Seq.unfold(fun i-> Some(i, i + 3.0)) 3.0
|> Seq.map (fun index -> Fib(index))
|> Seq.filter(fun fn -> (fn <= maxFib))
|> Seq.fold (+) 0.0;;
</code></pre>
<p>But that didn't work. As you can probably guess I'm just learning F# so please go gentle and if this sort of question has been asked and answered before, please post a link to the answer and I'll withdraw this one.</p>
http://stackoverflow.com/questions/1817248/patterns-to-mix-f-and-c-in-the-same-solution7Patterns to mix F# and C# in the same solutionfabrizi02009-11-30T00:12:22Z2009-12-01T16:57:04Z
<p>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.</p>
<p>A complex solution written in a .Net framework could get advantages using more than a language and sometimes more than a paradigm. Mixing C or C++ with LUA or Python is a common practice, sometimes embedding prolog can be very interesting.
I never tried to mix OOP and functional paradigm.</p>
<p>F# is a newer functional and object oriented language, I see that's it's technically very easy to mix C# with F# libraries in the same solution. But I wonder if it makes any sense: I use Linq to satisfy many of my functional requirements.</p>
<p>When and how, do you think it's a good idea to mix these two languages together?
I wonder if exists a set of patterns that tries that.</p>
<p>Do you actually use F# in a C# solution?</p>
http://stackoverflow.com/questions/1802052/is-f-database-programming-the-same-as-c-database-programming1Is F# database programming the same as C# database programming?Peter2009-11-26T07:23:07Z2009-12-01T05:54:52Z
<p>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 definition, quite a lot of side-effects.. </p>
<p>Or am I missing something here? Has F# some beauty to offer in this domain also?</p>
<p>And would someone be so kind a to provide me with an example for both reading from an writing to a database?</p>
http://stackoverflow.com/questions/196677/can-you-mix-net-languages-within-a-single-project7Can you mix .net languages within a single project?Brian R. Bondy2008-10-13T04:01:23Z2009-11-30T22:55:37Z
<p>Can you mix .net languages within a single project? So pre-compiled, I would like to call classes and methods of other source files.</p>
<p>For both web and apps? </p>
<p>In particular I'd be interested in F# and C#.</p>
http://stackoverflow.com/questions/1817643/f-passing-an-operator-with-arguments-to-a-function2F# passing an operator with arguments to a functiondan2009-11-30T02:57:32Z2009-11-30T21:32:28Z
<p>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:</p>
<pre><code>List.map ((+) 1) [1..5];; //equals [2..6]
// instead of having to write: List.map (fun x-> x+1) [1..5]
</code></pre>
<p>What's happening is 1 is being applied to (+) as it's first argument, and the list item is being applied as the second argument. For addition and multiplication, this argument ordering doesn't matter.</p>
<p>Suppose I want to subtract 1 from every element (this will probably be a common beginners mistake):</p>
<pre><code>List.map ((-) 1) [1..5];; //equals [0 .. -4], the opposite of what we wanted
</code></pre>
<p>1 is applied to the (-) as its first argument, so instead of <code>(list_item - 1)</code>, I get <code>(1 - list_item)</code>. I can rewrite it as adding negative one instead of subtracting positive one:</p>
<pre><code>List.map ((+) -1) [1..5];;
List.map (fun x -> x-1) [1..5];; // this works too
</code></pre>
<p>I'm looking for a more expressive way to write it, something like <code>((-) _ 1)</code>, where <code>_</code> denotes a placeholder, like in the Arc language. This would cause <code>1</code> to be the second argument to <code>-</code>, so in List.map, it would evaluate to <code>list_item - 1</code>. So if you wanted to map <code>divide by 2</code> to the list, you could write: </p>
<pre><code>List.map ((/) _ 2) [2;4;6] //not real syntax, but would equal [1;2;3]
List.map (fun x -> x/2) [2;4;6] //real syntax equivalent of the above
</code></pre>
<p>Can this be done or do I have to use <code>(fun x -> x/2)</code>? It seems that the closest we can get to the placeholder syntax is to use a lambda with a named argument.</p>
http://stackoverflow.com/questions/1816918/f-match-active-pattern-as-expanded-tuple0F# match active pattern as expanded tuple gradbot2009-11-29T21:56:46Z2009-11-29T22:06:52Z
<p>I get the following error in diff with a red squiggle under Subset.<br>
<code>Type mismatch. Expecting a Range -> Choice but given a Range * Range -> Choice</code></p>
<p>Is there some sort of type annotation I can add to the SubSet match so I don't have to use fst and snd? If not is there any intention to support this syntax?</p>
<pre><code>type Range = {min : int64; max : int64}
let (|Before|After|BeforeOverlap|AfterOverlap|SuperSet|SubSet|) (x, y) =
if x.min > y.max then After
elif x.min >= y.min then
if x.max <= y.max then SubSet
else AfterOverlap
elif x.max < y.min then Before
elif x.max <= y.max then BeforeOverlap
else SuperSet
let useOldx x xe ye = ()
let diff (xe:IEnumerator<Range>) (ye:IEnumerator<Range>) =
match xe.Current, ye.Current with
| After as tuple -> ()
| Before as t -> if xe.MoveNext() then useOldx (fst t) xe ye
| SuperSet as t ->
let x, y = t
if xe.MoveNext() then useOldx x xe ye
| SubSet as x, y -> if xe.MoveNext() then useOldx x xe ye
| _ -> ()
</code></pre>
http://stackoverflow.com/questions/1808473/group-by-with-tuples-in-f4Group by with tuples in F#Peter2009-11-27T12:24:17Z2009-11-29T18:31:01Z
<p>Suppose I have a list of tupples like these : </p>
<pre><code>[("A",12); ("A",10); ("B",1); ("C",2); ("C",1)]
</code></pre>
<p>And I would like to do some kind of <code>groupby</code> how do I handle that?</p>
<p>In pseudocode-SQL it should look something like this : </p>
<pre><code>SELECT fst(tpl), sum(lst(tpl)) FROM [TupplesInList] GROUP BY fst(tpl)
</code></pre>
<p>yielding </p>
<pre><code> [("A",22); ("B",1); ("C",3)]
</code></pre>
<p>I could make a Dictionary and add the ints if the key exist, but I can hardly believe that would be the best solution in a language as expressive as F#.</p>
<p>Any help is welcome, and related insights too.</p>
http://stackoverflow.com/questions/1812174/f-charting-example2F# charting examplePeter2009-11-28T10:18:36Z2009-11-29T07:02:46Z
<p>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. </p>
<p>Example data : </p>
<pre><code>[("John",34);("Sara",30);("Will",20);("Maria",16)]
</code></pre>
<p>Where the ints are percentages to be represented in the pie. </p>
<p>I have recently installed VSLab and though I find a lot of 3D examples, I am only looking for a simple pie chart...</p>
<p>It is also fine to use excel features by the way, not free, but installed nevertheless..</p>
http://stackoverflow.com/questions/1814629/why-the-tuple-type-can-not-be-inferred-in-the-list-recursion0Why the tuple type can not be inferred in the list recursion?Alexander Guan2009-11-29T04:10:59Z2009-11-29T05:28:15Z
<p>I want to refine the raw text by using regular expression, given a list of (patten,replacement) tuple. </p>
<p>I tried to use the patten matching on the list element but failed, the error showed that "This expression was expected to have type string * string list but here has type 'a list". </p>
<p>How can I fix this problem? Thanks a lot.</p>
<p>Codes are as follows:</p>
<pre><code>let rec refine (raw:string) (rules:string*string list) =
match rules with
| (pattern,replacement) :: rest ->
refine <| Regex.Replace(raw,pattern,replacement) rest
| [] -> raw
</code></pre>
http://stackoverflow.com/questions/36756/f-what-are-you-using-it-for14F# - What are you using it for?Kaius2008-08-31T10:33:29Z2009-11-28T10:09:36Z
<p>Ok so a good few months back i started hearing about F# and all the goodness it has, i bought Don Syme's book and started reading. At first i was really excited at how elegant it seemed to make certain tasks. But then i found a problem, although the language seems great it is quite different from what i use in work which means my co-workers won't understand it if i start developing new projects in it. So because i have not had a reason to actually work with it I still havent gotten my head around F# at all. </p>
<p>Luckily a new solo project is on the horizon which may give me a chance to use F#. My question is how did you start developing in F#? Do your co-workers also use it? </p>
<p>The project will be a pretty simple WinForm application connecting to a DB. I know i can write it all in C# or VB.NET but i would like to integrate F# in there in some way. Although developing the entire application in F# would take me far too long as i am still learning what areas would you suggest i use F# for?</p>