Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
1answer
670 views

Scrap Your Boilerplate in f#

I've used the Scrap Your Boilerplate and Uniplate libraries in the Haskell programming language, and I would find that form of generic programming over discriminated unions to be really useful. Is ...
10
votes
11answers
878 views

Discriminated union in C#

[Note: This question had the original title "C (ish) style union in C#" but as Jeff's comment informed me, apparently this structure is called a 'discriminated union'] Excuse the verbosity of this ...
8
votes
2answers
260 views

Do algebraic datatypes in Haskell equal discriminated unions in F#?

I am learning Haskell and would like to know whether the constructs known in Haskell as algebraic datatypes are the same that discriminated unions in F# or there are some subtle differences between ...
6
votes
3answers
178 views

Can discriminated unions refer to each other?

I'm building an expression tree using discriminated unions. The below code: type IntExpression = | TrueIsOne of BoolExpression type BoolExpression = | LessThan of IntExpression * ...
5
votes
3answers
198 views

Shared cases in F# discriminated unions

I want to write something like this: type NumExp = Num of float type Exp = | Num of float | Dot of NumExp * NumExp | Op of string * Exp * Exp let getValue (Num(n) : NumExp) = n The ...
5
votes
6answers
1k views

How can I duplicate the F# discriminated union type in C#?

I've created a new class called Actor which processes messages passed to it. The problem I am running into is figuring out what is the most elegant way to pass related but different messages to the ...
4
votes
1answer
171 views

Transform an Abstract Syntax Tree (AST) in F#

I am trying to design an AST for a decision logic table. One of the things I would like to be able to do with the discriminated union that represents my AST is transform parts of it for different ...
4
votes
3answers
616 views

DIscriminated Union & let binding?

Why are let bindings not permitted in a discriminated union? I assume it has to do with let bindings being executed in a default constructor? On a secondary note any suggestions on how I could ...
3
votes
2answers
108 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 ...
3
votes
3answers
229 views

Type-safe discriminated unions in C#, or: How to limit the number of implementations of an interface?

First, sorry for the lengthy post. Basically, my question is this: I'm trying to reproduce the following F# discriminated union type in C#: type Relation = | LessThan of obj * obj | ...
3
votes
2answers
238 views

Match on discriminated union

Using F# for the first time for a production thing and need a little help. Please see this code where I added the warnings I get as comments on each line: type AssetClass = | Corp | Corp_SME ...
3
votes
2answers
159 views

How to use symbols/punctuation characters in discriminated unions

I'm trying to create a discriminated union for part of speech tags and other labels returned by a natural language parser. It's common to use either strings or enums for these in C#/Java, but ...
2
votes
3answers
124 views

F#: combining together discriminated unions and class hierarchies?

Let's say I have a significant class hierarchy: Tag ControlFlowTag IfTag ForTag JumpTag HTMLTag DivTag and I want to make a list interspersed with these and ...
2
votes
2answers
95 views

Printing F# discriminated union

I am writing a F# program which parses a string into a AST type which is a discriminated union. When I use fsi (on Mono + Mac OS X) to run my code, the AST is printed out in a nice format. But when ...
2
votes
3answers
109 views

Immutable fields in discriminated union

I know it's possible to add methods and properties to discriminated unions, but can you add an immutable field that has to be set when an instance the union is created, much like the fields in a ...
2
votes
2answers
185 views

F# discriminated unions versus C# class hierarchies

I have the following code: public abstract class A ... public class B : A ... public class C : A ... void my_fct(A x) { if (x is B) { block_1 } else if (x is C) { block_2 } else { block_3 } } ...
2
votes
2answers
98 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 ...
2
votes
1answer
106 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 ...
2
votes
3answers
168 views

How to enumerate a discriminated union in F#?

How can I enumerate through the possible "values" of a discriminated union in F#? I want to know if is there something like Enum.GetValues(Type) for discriminated unions, tough I am not sure over ...
2
votes
1answer
165 views

How can I transform a large discriminated union tree to a readable form?

The following type is clearly quite large so manually writing the code to convert this to a readable form would be tedious. I would like to know the simplest way to display the tree in a readable ...
2
votes
2answers
188 views

Optimal representation of expressions in F#

I'm working on a library to generate SQL from LINQ expressions (basically a modified subset of LINQ-to-SQL). I'm using discriminated unions to model the SQL expressions, but have encountered some ...
2
votes
1answer
315 views

What is the Enum.GetName equivalent for F# union member?

I want to get the equivalent of Enum.GetName for an F# discriminated union member. Calling ToString() gives me TypeName+MemberName, which isn't exactly what I want. I could substring it, of course, ...
1
vote
2answers
244 views

Conversion between types in discriminated unions

I have a function, which can returns different types, and I use discriminated union for this. What I need, is to have conversion from one type in discriminated union to another type. Also some of the ...
1
vote
2answers
137 views

F# discriminated union picking 0 or 1 from a list

Given a mapping program where I map from an array of strings to a discriminated union, I want to select an instance of a particular DU type. I know that there will be 0 or 1 instances. Is there a ...
1
vote
1answer
263 views

Where can I find a serializer for F# discriminated unions?

I need to persist an abstract syntax tree represented using F# discriminated unions to a human readable compact format, such as the format already used in the F# language to construct discriminated ...
1
vote
2answers
233 views

Discriminated unions and inheritance

I'm looking to create a scene-graph for my F# project somthing like: root ->player_bob -->torch ->enemy_1 -->extravagant_hat -->enemies_cat_jess --->fleas --->fur_ball ->loot ...
1
vote
2answers
353 views

Upgrading FParsec: upgrade discriminated unions to satisfy the new equality/comparison constraints

So, by a hilarious series of events, I downloaded the FParsec source and tried to build it. Unfortunately, it's not compatible with the new 1.9.9.9. I fixed the easy problems, but there are a couple ...
1
vote
4answers
200 views

Getting a typed array from a discriminate union of different types of arrays in F#

If I have a discriminate union of different types of arrays how can i convert them to their 'actual' types? type ItemStuff = | Colors of string[] | Sizes of int[] let foo = Sizes [|1;2;3|] ...
0
votes
2answers
82 views

“Unbox” versatile type of discriminated union / Search for good workaround

For a small AST parser i have a small discriminated union type Numerical = | Int of int | Real of float for the use in some other constructs like type Vector = Numerical list Vector [Int ...
0
votes
2answers
119 views

Comparing Discriminated Unions

I'm a newbie to F# and I'm playing around with FParsec. I would use FParsec to generate an AST. I would like to use FsUnit to write some tests around the various parts of the parser to ensure ...
0
votes
1answer
92 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 ...