The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
71 views

What is an Isabelle/HOL subtype? What Isar commands produce subtypes?

I'd like to know about Isabelle/HOL subtypes. I explain a little about why it's important to me in my partial answer to my last SO question: Trying to Treat Type Classes and Sub-types Like Sets and ...
14
votes
1answer
317 views

Singleton types in Haskell

As part of doing a survey on various dependently typed formalization techniques, I have ran across a paper advocating the use of singleton types (types with one inhabitant) as a way of introducing ...
2
votes
0answers
57 views

Beyond type theory

There has been much fuss about dynamically vs. statically typed languages. To my eye, however, while statically typed languages enable the compiler (or interpreter) to know a bit more about your ...
40
votes
5answers
2k views

What's the absurd function in Data.Void useful for?

The absurd function in Data.Void has the following signature, where Void is the logically uninhabited type exported by that package: -- | Since 'Void' values logically don't exist, this witnesses the ...
7
votes
1answer
203 views

What is the common supertype of all instances of Kind in Type Theory

I'm trying to design an ontology such as could be defined with OWL or Topic Maps that includes support for polymorphic types such as List[T] where T is a type parameter of the Interval Kind ...
2
votes
1answer
57 views

Kind vs Rank in type theory

I'm having a hard time understanding Higher Kind vs Higher Rank types. Kind is pretty simple (thanks Haskell literature for that) and I used to think rank is like kind when talking about types but ...
0
votes
0answers
82 views

Java implementations of dependent-type theory

Does any know of any Java implementations of dependent type theory?
2
votes
1answer
702 views

What is the relationship between recursion and proof by induction?

What is the relationship between recursion and proof by induction ? Let's say fn(n), recursion is fn(n) calls itself until meet base condition; induction is when base condition is meet, try to ...
1
vote
5answers
584 views

Does C++11 support types recursion in templates?

I want to explain the question in detail. In many languages with strong type systems (like Felix, Ocaml, Haskell) you can define a polymorphic list by composing type constructors. Here's the Felix ...
5
votes
2answers
214 views

Function which generically takes a type and returns the same type

I am having a tough time understanding why the scala compiler is unhappy about this function definition: def trimNonWordCharacters[T <: Iterable[String]](items: T): T = items map { ...
32
votes
1answer
2k views

Differences between Agda and Idris

I'm starting to dive into dependently-typed programming and have found that the Agda and Idris languages are the closest to Haskell, so I started there. My question is: which are the main differences ...
20
votes
3answers
861 views

Type theory: type kinds

I've read a lot of interesting things about type kinds, higher-kinded types and so on. By default Haskell supports two types of kind: Simple type: * Type constructor: * → * Latest GHC's language ...
13
votes
2answers
492 views

Are there type signatures which Haskell can't verify?

This paper establishes that type inference (called "typability" in the paper) in System F is undecidable. What I've never heard mentioned elsewhere is the second result of the paper, namely that "type ...
2
votes
1answer
211 views

Where's the contravariance?

A canonical example of patching up an otherwise covariant class is as follows: abstract class Stack[+A] { def push[B >: A]( x: B ) : Stack[B] def top: A def pop: Stack[A] Now, if I remove ...
1
vote
1answer
63 views

Type system algebra - use of derivation

I remember a web page describing interesting techniques in relation with some functional-programming task. The problem is that I can't remember what it was. It had a binary tree node (Tree left, Tree ...
1
vote
3answers
56 views

Understanding the difference between types and representations

This article speaks of the difference between types and classes. Since I've only worked with languages that treat both as identical, please suggest material/programming-languages that will teach me ...
8
votes
2answers
520 views

Books for beginning type system theory [closed]

I want to study type system theory. I don't have any background in type system theory so I'm more or less a beginner (except the articles I've read on the subject and which I find intimidating because ...
4
votes
2answers
697 views

Typing the Y combinator

http://muaddibspace.blogspot.com/2008/01/type-inference-for-simply-typed-lambda.html is a concise definition of the simply typed lambda calculus in Prolog. It looks okay, but then he purports to ...
8
votes
1answer
139 views

How does one prove the equivalence of two types and that a signature is singly-inhabited?

Anyone who has been following Tony Morris' blog and scala exercises, will know that these two type signatures are equivalent: trait MyOption1[A] { //this is a catamorphism def fold[B](some : A ...
10
votes
2answers
388 views

could someone explain the connection between type covariance/contravariance and category theory?

I am just starting to read about category theory, and would very much appreciate it if someone could explain the connection between CS contravariance/covariance and category theory. What would some ...
5
votes
2answers
440 views

A question about logic and the Curry-Howard correspondence

Could you please explain me what is the basic connection between the fundamentals of logical programming and the phenomenon of syntactic similarity between type systems and conventional logic?
5
votes
4answers
274 views

What is the most easy way to get in advanced Type Theory

Of course, by 'advanced' I mean here just something beyond what every programmer does know. I'm currently more-or-less comfortable with the basics and want to understand the most important, most ...
19
votes
3answers
1k views

What type of lambda calculus would Lisp loosely be an example of?

I'm trying to get a better grip on how types come into play in lambda calculus. Admittedly, a lot of the type theory stuff is over my head. Lisp is a dynamically typed language, would that roughly ...
1
vote
2answers
294 views

What are “typing models”?

In Beyond Java(Section 2.2.9), Brute Tate claims that "typing model" is one of the problems of C++. What does that mean?
8
votes
3answers
411 views

How to make these dynamically typed functions type-safe?

Is there any programming language (or type system) in which you could express the following Python-functions in a statically typed and type-safe way (without having to use casts, runtime-checks etc)? ...
8
votes
3answers
1k views

Understanding the type error: “expected signature Int*Int->Int but got Int*Int->Int”

The comments on Steve Yegge's post about server-side Javascript started discussing the merits of type systems in languages and this comment describes: ... examples from H-M style systems where you ...
5
votes
3answers
976 views

What is a type and effect system?

The Wikipedia article on Effect system is currently just a short stub and I've been wondering for a while as to what is an effect system. Are there any languages that have an effect system in ...
4
votes
3answers
316 views

How to infer coercions?

I would like to know how to infer coercions (a.k.a. implicit conversions) during type inference. I am using the type inference scheme described in Top Quality Type Error Messages by Bastiaan Heeren, ...