-2
votes
1answer
173 views
What kind of bird is this? [closed]
What kind of bird is this?
Is it any good at functional programming or rather misusing F# with its imperative programming features?
1
vote
3answers
101 views
How To Change List of Chars To String?
In F# I want to transform a list of chars into a string. Consider the following code:
let lChars = ['a';'b';'c']
If I simply do lChars.ToString, I get "['a';'b';'c']". I'm try …
0
votes
2answers
49 views
F#: Namespace not defined when trying to open System.Windows.Forms
I am using Visual Studio 2008 Integrated Shell with the F# CTP (October). Everything works fine, but when I am trying to open System.Windows.Forms, VS gives an error: the namespace …
4
votes
2answers
94 views
Is it possible to match with decomposed sequences in F#?
I seem to remember an older version of F# allowing structural decomposition when matching sequences just like lists. Is there a way to use the list syntax while keeping the sequen …
10
votes
8answers
233 views
Examples of functional programs ‘writing themselves’ via type analysis
(Background: I've been thinking about doing a presentation on F# and functional programming. From experience, I think that the 'wow' factor of pattern matching and type inference i …
0
votes
3answers
64 views
Type annotation for none abstract property
Any ideas on how I could add type annotation to fix this error?
I'm getting a red squiggly under Foo.Bar in getFooBar and the following error message for it.
Lookup on object of …
1
vote
1answer
88 views
Unload/unreference a referenced assembly from F# interactive
The F# Interactive (fsi.exe) has a directive to reference a given assembly:
>#help;;
[...]
#r "file.dll";; Reference (dynamically load) the given DLL
[...]
I …
2
votes
2answers
72 views
Adding code in constructor with alternative class syntax
type Foo =
class
inherit Bar
val _stuff : int
new (stuff : int) = {
inherit Bar()
_stuff = stuff
}
end
I want t …
1
vote
3answers
135 views
F# - Let and Property Assignment in one line
How can you write the following F# code (or similar) in one line:
let contextMenu = new ContextMenuStrip()
mainForm.ContextMenuStrip <- contextMenu
I have to declare contextM …
6
votes
3answers
169 views
Pretty print a tree
Let's say I have a binary tree data structure defined as follows
type 'a tree =
| Node of 'a tree * 'a * 'a tree
| Nil
I have an instance of a tree as follows:
let x =
…
0
votes
2answers
53 views
Unzipping ZLIB compressed portions of a binary file
Hi All-
I'm reading a file(a flash swf) from .Net 3.5 that has a header which states whether the body of the file/Stream is compressed or not. However, I'm having problems-after …
2
votes
1answer
117 views
F#: Typewriter effect in silverlight
Hello all,
I recently implemented an animated Typewriter effect in Silverlight using F#. My code works, but I'd like to see if anyone has recommendations on ways the code might be …
0
votes
3answers
73 views
F# Asp.Net CodeDom ProviderOptions Issue
I'm creating an ASP.NET MVC application using F# on IIS 7.
When I attempt to run it from the browser, I'm met with a YSOD containing the following:
[ArgumentNullException: Val …
0
votes
3answers
118 views
How to optimize splitting in F# more?
This code is splitting a list in two pieces by a predicate that take a list and return false in the moment of splitting.
let split pred ys =
let rec split' l r =
matc …
0
votes
2answers
94 views
F# Code Optimization for Left Leaning Red Black Tree
I've been working on porting a C# implementation of a LLRBT to F# and I now have it running correctly. My question is how would I go about optimizing this?
Some ideas I have
U …
