Tagged Questions

Existential types are types that provide a collection of operations that act on an unspecified, or abstract, type. They thus capture notions of interface and abstraction in a type theoretic setting.

learn more… | top users | synonyms

32
votes
6answers
3k views

What is an Existential Type?

I read through the wikipedia entry on this. I gathered that they're called existential types because of the existential operator (∃). I'm not sure what the point of it is, though. What's the ...
15
votes
2answers
293 views

Haskell counted list type

So, just for fun, I've been playing with a CountedList type in Haskell, using Peano numbers and smart constructors. Type-safe head and tail just seem really cool to me. And I think I've reached the ...
12
votes
1answer
450 views

polymorphic function on existential type

So say I have a class: class C a where reduce :: a -> Int Now I want to pack it up in a data type: data Signal = forall a. (C a) => Signal [(Double, a)] Thanks to the existential ...
12
votes
1answer
541 views

Folding over a polymorphic list in Haskell

I have a collection of records spread across a number of types in a large Haskell application that reference each other. All of the types involved implement a common typeclass. The typeclass contains ...
11
votes
3answers
181 views

A “truly” generic function in Haskell

Suppose I have a compound data type - data M o = M (String,o) Now, I can define a function that works for ALL M irrespective of o. For example - f :: M o -> M o f (M (s,o)) = M (s++"!", o) ...
9
votes
2answers
271 views

How does one declare an abstract data container type in Haskell?

I read William Cook's "On Data Abstraction, Revisited", and re-read Ralf Laemmel's "The expression lemma" to try to understand how to apply the former paper's ideas in Haskell. So, I'm trying to ...
7
votes
2answers
135 views

Existential types and monad transformers

Context: I'm trying to produce an error monad that also keeps track of a list of warnings, something like this: data Dangerous a = forall e w. (Error e, Show e, Show w) => Dangerous (ErrorT e ...
7
votes
1answer
107 views

Type errors with Existential types in Haskell

I am struggling with existential types in my program. I think I'm trying to do something very reasonable however I cannot get past the typechecker :( I have a datatype that sort of mimics a Monad ...
7
votes
2answers
1k views

Scala's existential types

A bit more specific than this question, can someone tell me what is the difference between Scala's existential types and Java's wildcard, prefereably with some illustrative example? In everything ...
6
votes
1answer
282 views

Haskell Existential Types

I'm trying to wrap my brain around Haskell's existential types, and my first example is a heterogeneous list of things that can be shown: {-# LANGUAGE ExistentialQuantification #-} data Showable = ...
6
votes
2answers
304 views

Haskell: Record Update for Existential Types

I was trying to use record update for an existential record when I ran into an error. A quick google led me to feature request #2595, which shows it as implemented for GHC back in version 6.8.3. I'm ...
5
votes
1answer
133 views

Overriding functions with path-dependent type parameters

Edit: Thanks to Derek pointing out the critical part of the error message, I was able to extract the critical part a bit more and it seems to be about Existential Types. If I do understand §3.2.10 ...
5
votes
2answers
143 views

Is there a way to define an existentially quantified newtype in GHC Haskell?

Is it possible in (GHC) Haskell to define an existentially-quantified newtype? I understand that if type classes are involved it can't be done in a dictionary-passing implementation, but for my ...
4
votes
2answers
193 views

Can I statically reject different instantiations of an existential type?

First attempt It's difficult to make this question pithy, but to provide a minimal example, suppose I have this type: {-# LANGUAGE GADTs #-} data Val where Val :: Eq a => a -> Val This ...
4
votes
2answers
97 views

Using Java wildcards

I want to implement some kind of component system in Java. There is an interface, called Form interface Form<T> { T getObject(); // ... } And I'd like to provide some abstract class ...
4
votes
2answers
203 views

existential types

(UPDATE: simplified the code and also show why it should work) How can I fix this code?: case class Sub[B <: Seq[_] : Manifest](b: B) { def foo[B2 >: B <: Seq[_] : Manifest](other: ...
4
votes
1answer
205 views

State monad in OCaml

I was trying to implement the state monad in OCaml (as an exercise). My implementation looks like this: module type MONAD_BUILDER = sig type 'a t val return : 'a -> 'a t val bind : 'a t ...
3
votes
1answer
124 views

What does the “not a simple type” warning mean in Scala?

My Scala 2.9.1 project now emits 176 warnings, all almost exactly like this one: [warn] Not a simple type: [warn] Type: _29.type#source.type forSome { type _29.type <: ...
3
votes
1answer
281 views

How to use Enum.valueOf from Scala?

I need to get a Java enum value from a string given Enum's Class instance. I tried code like below, but I'm getting "unbound wildcard type" compilation error. Seems, I need to do something with ...
3
votes
5answers
560 views

Haskell question: constraining data types to use show

Code: data Exp a = Const a | Eq (Exp a) (Exp a) I want the Const a to contain a value of type show so that i can print it later. So in C# i would write: class Const : Exp { IShow X; } class Eq : ...
2
votes
1answer
77 views

Constraining higher-kinded types for a Function1's argument and result type

Given some higher-kinded types: trait Impl[ S ] trait Event[ S, A ] trait Key[ A ] How can I rewrite the following definition: def declare[ A ]( fun: Impl[ _ ] => Event[ _, A ]) : Key[ A ] = ...
2
votes
3answers
87 views

Ambiguous type using explicit quantifiers

Minimal example code: class IntegralAsType a where value :: (Integral b) => a -> b class (Num a, Fractional a, IntegralAsType q) => Zq q a | a -> q where changeBase:: forall p b . ...
2
votes
2answers
95 views

Dynamic dispatch, smart constructors, Template Haskell perhaps?

I'm looking at HaskellWiki > Existential type # Dynamic dispatch mechanism. And I'm thinking, there should be a way in Template Haskell to take this part: class Shape_ a where ... type Radius = ...
2
votes
2answers
99 views

Scala: existential types for a Map

I want to use a map of varying types on an unknown A: val map: Map[Foo[A], Bar[A]] = ... ... val foo = new Foo[Qux] val bar: Bar[Qux] = map(foo) This doesn't work, because A is an unknown. I have ...
2
votes
2answers
171 views

How do you explicitly specify a parameterized type for an existential type in Scala?

In Programming in Scala, the following example is given to show how to reference a Java class with wildcards. The method javaSet2ScalaSet takes a type T. Typically, you can always explicitly supply ...
2
votes
3answers
599 views

Why the following Scala code does not compile unless explicit type parameters are added?

object Test extends Application { // compiles: Map[Int, Value]( 0 -> KnownType(classOf[Object]), 1 -> UnknownValue()) // does not compile: Map( 0 -> ...
1
vote
2answers
149 views

Existential types and pattern matching in Scala

I'm trying to do something roughly like the following: trait MyData trait MyId trait MyDataType[T <: MyData] { type MyIdType <: MyId // There can be converters here to bring back // ...
1
vote
2answers
209 views

Does this code describe an Existential Type in C#?

Currently watching Bart De Smet's explanation of IQueryable and he mentioned Existential Types (which I've been curious about for some time). After reading the answers to this question I'm just ...
0
votes
1answer
28 views

Can someone explain to be what is going on here? existential universal quantifications

I have to program (C++) and find the true value of the following. I am uncertian as to what it exactly means. AxAy(C(x, y) -> ((Aw(C(x, w) -> w = y) ^ (Az(C(z, y) -> z = x)) note that the ...