2
votes
3answers
148 views

How do you define types in a tuple in a function

I have just started with F# and functional programming. I want to know how I can make a function taking a tuple where I define that the first value have to be a string, instead of the standard int. ...
6
votes
2answers
161 views

What is the purpose of flexible type annotation in F#?

I'm studying F# and I don't understand the purpose of flexible types, or better, I can't understand the difference between writing this: set TextOfControl (c : Control) s = c.Text <- s and ...
2
votes
1answer
120 views

Composing async computations in F#

I'm writing an asynchronous HTTP API client module/library. To make everything as DRY as possible, I'm trying to compose every HTTP API call from separate parts that make an API call, bottom-up: ...
4
votes
1answer
92 views

Assign a method with default values to Func<> without those parameters?

I would like to be able to do the following: Func<int,bool> tryMethodFunc = TryMethod; Where TryMethod has a signature like: bool TryMethod(int value, int value2 = 0, double value3 = 100.0) ...
5
votes
3answers
222 views

Why doesn't infinite recursion hit a stack overflow exception in F#?

I know this is somewhat the reverse of the issue people are having when they ask about a stack overflow issue, but if I create a function and call it as follows, I never receive any errors, and the ...
3
votes
2answers
198 views

Is there a safe way of converting a Collection to a sequence in F#?

Good afternoon, all! So I've been playing around with ways of casting a .NET Collection to a functional data structure. The best I've been able to get is to cast it to a seq first and to whatever I ...
2
votes
4answers
123 views

Do Predicates or Actions have any additional properties or qualities which differentiate them to Funcs?

A Predicate is just a Func which returns a boolean: Predicate<T1, T2, T3, ...,Tn> = Func<T1, T2, T3, ...,Tn, bool> And an Action is just a Func which doesn't return a value: ...
1
vote
1answer
129 views

Why is LINQ not purely functional? [closed]

So, why exactly is LINQ not considered purely functional? Is it because side effects can occur? Or is it maybe because it exists in an imperative environment?
2
votes
1answer
154 views

Confused regarding active patterns

I understand how active patterns can be defined and used in F#, including partial active patterns, and the different sorts of patterns available. E.g. let (|Big|Small|) animal = if animal.IsBig then ...
2
votes
1answer
110 views

Discriminated Unions and let bindings

let ``one`` x = One(x) type Number = | One of int | Two with member this.Hi x = ``one`` x Basically, I want to define a let binding that references a discriminated union, and I want to use it ...
1
vote
2answers
281 views

F# version of Haskell's list destructuring

How do I do this haskell in F#: f acc (x:y:z:xs) = f (acc-x+y*z) xs f acc [] = acc The algorithm there is arbitrary, just the important point is selecting the first 3 and the tail of the list ...
1
vote
2answers
133 views

In F#, an 'is X' operator for case identifiers?

Let's say I have the following discriminated union and value: type DisUnion = | One of string | Two of string | Three of string * string let myVal = One("One") I know I can use ...
19
votes
4answers
434 views

Combining Predicates in F#

Is there a standard way of logically combining predicates in F#? For example, let's say I have isCar x and isBlue x then I want something that gives me: let isBlueCar x = isCar x && isBlue x ...
4
votes
4answers
222 views

Efficiency: Func<T>, Vs instance of T

Recently I've been experimenting with the use of the Func<T> class, and so far I'm loving it. I've noticed however that more and more I'm beginning to use it instead of actually using an ...
7
votes
2answers
747 views

Are there already built in functional C#/.NET constructs like these? g(h()), or

public static Func<V> To<T, V>(this Func<T> g, Func<T, V> h) { return () => h(g()); } public static Func<T> ToIdentity<T>(this T t) { return () => t; ...
3
votes
2answers
173 views

Is there a .net library that has a persistent immutable Vector class (as found in Clojure/Scala)?

I've spent a good hour googling, and can find various .NET immutable Lists, Sets and Maps. I have not been able to find a persistent immutable Vector though. Something like Scala's immutable Vector ...
2
votes
2answers
201 views

F# - not understanding function composition (transform get files function to get duplicate files function)

Here is my problem... I don't understand why this isn't working for me :) To be more specific I have a get files function (not the problem but feedback is welcome): type DirectoryOptions = Directory ...
1
vote
1answer
326 views

DataContract surrogate for amplified value type

I want to use a custom aplified type (think Nullable) in a DataContract class. I tried to write a IDataContractSurrogate but it fails at deserialization. My amplified type looks like this: public ...
38
votes
3answers
2k views

Resources for working with Machine Learning in F#

I have learned a Machine Learning course using Matlab as a prototyping tool. Since I got addicted to F#, I would like to continue my Machine Learning study in F#. I may want to use F# for both ...
4
votes
2answers
647 views

Is Time Series implementation using functional programming (F#) recommended?

I am developing a a project in .NET, part of which I will be manipulating times series. Since the main part of the project has been implemented in C#, I've sketched an object-oriented design ...
0
votes
2answers
131 views

JavaScript library for sequence programming

I am .Net Developer and I believe one of the merits in Linq design is the set of extension methods defined for IEnumerable and IQueryable that make you able to avoid for loops in very much situations. ...
4
votes
3answers
340 views

F#: Reduce/aggregate a sequence or list in pairs

I am fairly new to functional programming and have some problems with a list processing task. I have a collection of records like the following: type TestRec = { Id : string Amount : int } ...
2
votes
2answers
119 views

What are some approaches for gathering and conveying compiler errors

The simplest approach is just to throw an exception with error information at the first occurrence of an error. Perhaps another approach is to pass a mutable list argument through analysis functions. ...
3
votes
1answer
122 views

Way to make sure our functions use abbreviated types intead of primitives in F# other than to have to always write it ourselves?

Let's say I have defined some type abbreviation type Individual = Double array and that I am using it throughout my F# project: let generateIndividual = [|1.0; 2.0|] IntelliSense tells me ...
4
votes
3answers
143 views

Refactoring F# function to make use of forward-pipe operator

type Range = int * int type Domain = Range array type Gene = int type Individual = Gene array type Population = Individual array let genPop (domain:Domain) popSize = let genInd (domain:Domain) : ...
3
votes
3answers
314 views

Has F# anything like Haskell's where clause?

I was wondering if there is anything in F# like Haskell's where clause. It would permit to transform the following code let roulleteWheel numberGenerator (scoredPopulation:ScoredPopulation) = let ...
1
vote
1answer
137 views

Looking for F# library function similar to map that will pass to f the current state of the computation

I wonder if there is some function in the F# libraries similar to this one? let map_acc (f:int->int) (list:int list) = let rec map_acc' f acc = function | [] -> [] | h::t -> (f ...
2
votes
2answers
124 views

Mutually referring cases in Discriminated Unions allowed in F#?

The following discriminated union fails to compile: type Expression = | Identifier of string | Integer of int | Assignment of Identifier * Expression with the shown error being The type ...
1
vote
2answers
160 views

Why do Record types oblige you to define its members types?

It seems Record types oblige you to declare its members types: type Point = { X:int; Y:int } What is (or may be) the rationale behind it? It seems that in F# you can (almost) always get away ...
1
vote
1answer
232 views

Function Application Operator ($) in F#?

Let's say I have this code let identifier = spaces_surrounded (many1Satisfy isLetter) I was wondering if it there was any native F# function that allowed me to refactor it to let identifier = ...
1
vote
1answer
219 views

Choosing whether to use Discriminated Unions or Record Types for a small AST in F#

Let's say I am implementing a very simple toy language parser. I am deciding whether to use DUs or record types (maybe a mix of both?). The structure of the language would be: a Namespace consists of ...
2
votes
1answer
190 views

Higher verbosity when using Record types in F# in comparison with Discriminated Unions

let Method = { Name:string } //oversimplification let method_parser = spaces >>. many1Satisfy isLetter .>> spaces |>> (fun name -> { Name=name }) Had I chosen to use a ...
4
votes
2answers
242 views

Use of the and keyword in F# in discriminated unions

I was faced today with the following DUs declarations: type Grammar = Definition list and Definition = Def of string * Expression and Range = | Char of char | Range of char * char ...
2
votes
2answers
171 views

Pattern matching record types

Let's consider the following Point record type: type Point = { x:int; y:int } I'd like to make a predicate that tells me whether a given Point is in a valid region. let insideBounds p = let ...
1
vote
2answers
130 views

Calling BCL functions with tuple arguments in F#

From what I've read, and if I am not mistaken, it seems that any BCL method receives its arguments as a tuple in F#. So I was wondering if instead of having let rndNumber= rng.Next(-10, 10) I could ...
5
votes
2answers
273 views

F# and duck-typing

Let's say I defined in F# the following two types: type Dog = { DogName:string; Age:int } type Cat = { CatName:string; Age:int } I was expecting the following method to work for both cats and dogs: ...
1
vote
1answer
84 views

Do targets of pattern matching in F# have to be always comma separated?

So I was looking at the following bit of code let rec zip list list' = match list, list' with | [], _ -> [] | _, [] -> [] | h::t, h'::t' -> (h, h')::(zip t t') when I noticed that ...
1
vote
3answers
174 views

Anything like Java's static imports in F#?

Coming from Haskell, I'd like to know if there is a way to avoid having to write the full List.map every time I want to use a map. Is there anything such as Java's static imports, so that I can only ...
5
votes
4answers
243 views

F# Short Circuit Pattern Matching

New to F#. The following question may make no sense at all. // an attempt at Huffman encoder let encodeValue x y = function ... match ((encodeValue left value), (encodeValue right value)) with ...
6
votes
4answers
425 views

Is writing only static methods equivalent to side-effect free programming in C#?

I have two questions, stemming from observed behavior of C# static methods (which I may be misinterpretting): First: Would a recursive static method be tail call optimized in a sense by the way the ...
0
votes
1answer
33 views

Execute a Command On A Collection Of Items, Functionally

I've done a little bit of LINQ but I almost exclusively return some elements from a collection based on some criteria. Now I'm trying to do something similar; let's say I have 50 winForm Controls in ...
2
votes
2answers
141 views

Is it possible to write a functor Interface for .NET?

Functional languages often have Functor types/interfaces. In .NET a Functor interface would be an Interface implementable by generic types (T<A>) that has a function called fmap that takes a ...
2
votes
5answers
200 views

Is there a name for this “design pattern”?

I have a group of operators (filters) and input collection of items. The "pipe" registers operators and runs them in a non-sequential manner over the same input collection, then it aggregates the ...
0
votes
2answers
205 views

Making printfn/IO pure in F#

There doesn't seem to be much online on making sure functions remains pure in F#. To create an example, is there any way to make printfn/IO pure in F#?
8
votes
3answers
269 views

represent stateful things in functional languages

I've been playing around with functional languages (F# in particular) and am really liking the whole immutable/concept. However, I'm a bit lost on how you're suppose to represent stateful things in ...
7
votes
4answers
2k views

clojure vs c# language

I am still trying to understand the clear benefits of clojure. I understand that it is a dynamic, [almost] purely functional language that lends itself well to unit testing, concurrency and rapid ...
1
vote
3answers
204 views

For which purposes is F# preferred to other languages and what are its strength? [closed]

Hallo everybody, I would like to know what is the purpose of the F# language, what are the contexts where it is preferred to other languages and why. For instance, what are typical applications that ...
3
votes
3answers
240 views

F# - creating 100 objects into a List - most functional and idiomatic way

In F# what is the most functional and idiomatic way of creating or "newing up" 100 new objects into a List. I guess for an example we could use DateTime as an example object.
3
votes
1answer
111 views

How to statically verify that some C# code is functional?

When writing in a functional style in C#, are there any tools to statically verify that classes are immutable and functions are pure? I imagine it to be impossible in the general case, but a tool ...
6
votes
1answer
568 views

How to combine delegates in C#

I want to implement a method which takes two Action A1 and Action A2 delegates and returns new delegate, which combines them. The signature of he method is the following: public static ...

1 2