Discriminated union, or disjoint union, is a data structure used to hold a value that could take on several different, but fixed types. They are also known as "sum types" in type theory.

learn more… | top users | synonyms

2
votes
2answers
113 views

Any problems if discriminated union has lots of options?

Yes, a trivial question, but I couldn't find an expert opinion on it. I am using computation expressions to sequence server-side processes. It helps me tremendously when my functions have the same ...
4
votes
0answers
104 views

How are F#'s Discriminated Unions different from Scala's Case Classes? or are they the same? [duplicate]

I've looked around on the web to find something in scala that could resemble or work like the F# discriminated union but no matter where I look I can't really find anything, except for the case class ...
1
vote
3answers
137 views

Accessing specific case from F# DU

Suppose I have the following DU: type Something = | A of int | B of string * int Now I use it in a function like this: let UseSomething = function | A(i) -> DoSomethingWithA i | B(s, i) -> ...
1
vote
1answer
79 views

Auto generation of predicates and accessors for discriminated unions in F#

Is it possible in F# to automatically generate predicates and accessors for an arbitrary algebraic data type in type-safe manner? For example, if we have user defined type: type A = B of ...
1
vote
1answer
52 views

Typeclass subclassing

I want to limit a parameter of union type of A and B types, where B is some general type, that will be subtyped. I want to put the objects in this method: def accept[A](a:A)(implicit ...
2
votes
2answers
131 views

Create discriminated union data from file/database

I have a discriminated union for expressions like this one (EQ =; GT >; etc) (AND (OR (EQ X 0) (GT X 10)) (OR (EQ Y 0) (GT Y 10))) I want to create instances of DU ...
2
votes
2answers
110 views

Understanding inference of discriminated unions

Consider the following code... type TypeOne () = member val Name = "" with get, set type TypeTwo () = member val Name = "" with get, set member val Property = 0 with get, set ...
4
votes
3answers
167 views

Using active patterns within discrimated union type declarations

Is it possible to use active patterns within discrimated union type declarations? To be more precise, consider the following toy example: type T = | A of int | B let (|Negative|_|) t = ...
4
votes
5answers
162 views

Operating on an F# List of Union Types

This is a continuation of my question at F# List of Union Types. Thanks to the helpful feedback, I was able to create a list of Reports, with Report being either Detail or Summary. Here's the data ...
3
votes
2answers
90 views

F# List of Union Types

I want a list of Reports. Report can be either Detail or Section types. module Data type Section = { Header: string; Lines: string list; Total: string } type ...
6
votes
2answers
217 views

F# Use generic type as pattern discriminator

If there's another way to achieve what I'm trying to do below, please let me know. Suppose I have the following sample code type FooBar = | Foo | Bar let foobars = [Bar;Foo;Bar] let isFoo item ...
1
vote
1answer
46 views

“Design pattern” for extending discriminated unions

It is well-known that class inheritance are "open" type-heirarchies and discriminated unions are "closed" type-heirarchies. However, while adding new subclasses is easy, adding new virtual functions ...
3
votes
6answers
308 views

Strictly compute and memoize in discriminated unions, in F#

I have a discriminated union, such as type Dish = | Eggs | Spam of Dish This is basically a linked list, without any content, e.g. Spam(Spam(Spam(Eggs))). I want to strictly perform a computation ...
1
vote
0answers
98 views

Parameterized Discriminated Union in F# [duplicate]

Possible Duplicate: Typed abstract syntax tree with function application I would like to have the following type t<'a>= | Val of 'a | Apply of (('a -> 'b) -> t<'a> ...
2
votes
1answer
167 views

Comparing F# discriminated union instances via pattern matching

Firstly, apologies for the poor title - I don't understand enough F# to describe the problem better. Consider this simple DU: type Money = | USD of decimal | GBP of decimal | EUR of ...
1
vote
2answers
242 views

How to fold over a discriminated union

I'm attempting to implement a fold over a discriminated union. The DU is called Expr, and represents a program expression, and is often recursive. I'm attempting to write a fold that accumulates the ...
5
votes
2answers
287 views

Concise pattern match on single case discriminated union in F#

Say I have the following single case discriminated union: type OrderId = OrderId of string At some point I need the actual string. The way I've found for extracting it is: let id = match orderId ...
7
votes
2answers
201 views

Why is None represented as null?

CompilationRepresentationFlags.UseNullAsTrueValue can be used to Permit the use of null as a representation for nullary discriminators in a discriminated union Option.None is the most prominent ...
4
votes
1answer
99 views

How to specify union clause with generic unit of measure in F#?

Is there anyway to define a DU whose clauses uses generic unit of measure? e.g. type MyDU = | A of int<_> | B of float<_> this code doesn't compile, but I can specify a regular ...
2
votes
1answer
179 views

Discriminated union structural/custom equality

I have the following discriminated union: type ActCard = Cellar of card list | Chapel of (card option * card option* card option* card option) | Smithy | Spy of ...
0
votes
3answers
162 views

How add setter to to discriminated unions in F#

I want add setter property to discriminated unions, how I should to do it? f.e.: type Factor = | Value of Object | Range of String let mutable myProperty = 123 member ...
8
votes
6answers
566 views

Idiomatic way to represent sum type (Either a b) in Clojure

Edited. My question now is: what idiomatic Clojure constructs are usually used instead of sum types in statically types languages? Consensus so far: use protocols if behaviour can be unified, use ...
0
votes
1answer
195 views

Map over all values in a discriminated union

Let's say I have a discriminated union: type card = Smithy | Cellar | Chapel And a function that maps the discriminated union to some value: let initialCardCount = function Smithy -> 4 ...
1
vote
5answers
193 views

Count of list elements that are a certain member of a discriminated union

Let's say I have a discriminated union: type foo = Bar | Baz | Batz Then, I want to check how many members of a list are of type Baz: List.sumBy (function Bar -> 1 | _ -> 0) foos Is there ...
3
votes
1answer
245 views

How to implement a discriminated union of a parameterless functor and its return value in C++?

I know I could use boost::variant and avoid having to ask this question. But using boost::variant involves a lot of ugly code. In particular, visitors are messy. So, without further ado... I have ...
4
votes
3answers
190 views

Adding constant fields to F# discriminated unions

Is it possible to add constant field values to F# discriminated unions? Can I do something like this? type Suit | Clubs("C") | Diamonds("D") | Hearts("H") | Spades("S") with override ...
7
votes
2answers
258 views

Purpose of a single case discriminated union

I'm defining a monadic observable/reactive parser. This behaves quite differently to a normal parser as it is a continuous query. The underlying type is: IObservable<'a> -> ...
3
votes
3answers
137 views

Copying a union case but with a different value in F#

In F#, I want to construct an instance (correct terminology?) of a discriminated union based on an existing instance. Example: type union Currency = | Dollar of int | Euro of int let ...
1
vote
2answers
81 views

Implementing fast CustomEquality and CustomComparison for discriminated union types

For referencing some coordinates with keys I wanted to use discriminated union types because they allow for efficient pattern matching of all sorts. Consider the follwoing code snipet: ...
3
votes
2answers
235 views

lists of discriminated unions in fsharp

Can anybody explain why following 2 let statements don't work? type Rank = | Two | Three | Four | Five | Six | Seven | Eight | Nine | Ten type Face = | Jack | Queen | King | Ace ...
0
votes
3answers
199 views

F#: Nested discriminated unions and matching

I have 2 nested discriminated unions: type ServiceTypes = | Contexts | Context of int | Producers type ServiceActions = | Get of ServiceTypes | Update of ServiceTypes And a ...
5
votes
2answers
345 views

Enum vs non-member discriminated union

I've just noticed that there's only a little difference in declaring a non-member discriminated union: type Color = | Red | Green | Blue and declaring an enum: type Color = | Red = ...
10
votes
2answers
525 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 ...
2
votes
3answers
240 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 ...
0
votes
2answers
148 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 ...
4
votes
1answer
381 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
2answers
225 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 ...
1
vote
2answers
293 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 ...
2
votes
3answers
162 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 ...
3
votes
2answers
324 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
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
1answer
220 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
244 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 ...
6
votes
3answers
518 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 ...
1
vote
2answers
397 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 ...
5
votes
3answers
488 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
352 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 ...
1
vote
2answers
182 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 ...
2
votes
1answer
228 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 ...

1 2