Tagged Questions

Type systems impose constraints on what programs may be written, by providing a syntactic method for operating with those constraints.

learn more… | top users | synonyms (1)

52
votes
2answers
2k views

What are some compelling use cases for dependent method types?

Dependent method types, which used to be an experimental feature before, has now been enabled by default in the trunk, and apparently this seems to have created some excitement in the Scala community. ...
45
votes
1answer
2k views

Haskell Weird Kinds: Kind of (->) is ?? -> ? -> *

When I was experimenting with Haskell kinds, and trying to get the kind of ->, and this showed up: $ ghci ... Prelude> :k (->) (->) :: ?? -> ? -> * Prelude> Instead of the ...
40
votes
10answers
17k views

Dynamic type languages versus static type languages

What are the advantages and limitations of dynamic type languages compared to static type languages? See also: whats with the love of dynamic languages (a far more argumentative thread...)
39
votes
2answers
2k views

Difference between `data` and `newtype` in Haskell

where is the difference when i write data Book = Book Int Int newtype Book = Book Int Int
37
votes
3answers
862 views

What are the primary theoretical difficulties with adding ML-style modules to Haskell?

It is well known that Haskell-style typeclasses and ML-style modules offer different mechanisms for specifying interfaces. They are (possibly) equivalent in power, but in practice each has their own ...
36
votes
1answer
2k views

What is meant by Scala's path-dependent types?

I've heard that Scala has path-dependent types. It's something to do with inner-classes but what does this actually mean and why do I care?
33
votes
3answers
723 views

Scala Hoogle equivalent?

Hoogle allows you to search many standard Haskell libraries by either function name, or by approximate type signature. I find it very useful. Is there anything like Hoogle for Scala? Search in ...
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 ...
30
votes
6answers
4k views

Is Haskell really a purely functional language considering unsafePerformIO?

Haskell is generally referenced as an example of a purely functional language. How can this be justified given the existence of System.IO.Unsafe.unsafePerformIO ? Edit: I thought with "purely ...
30
votes
3answers
2k views

What are the differences and similarities of Scala and Haskell type systems?

How to explain Scala's type system to a Haskell expert? What examples show Scala's advantages? How to explain Haskell's type system to an advanced Scala practitioner? What can be done in Haskell that ...
28
votes
3answers
2k views

Why is there “data” and “newtype” in Haskell?

To me it seems that a newtype definition is just a data definition that obeys some restrictions (only one constructor and such), and that due to these restrictions the runtime system can handle ...
25
votes
2answers
2k views

The type system in Scala is Turing complete. Proof? Example? Benefits?

There are claims that Scala's type system is Turing complete. My questions are: Is there a formal proof for this? How would a simple computation look like in the Scala type system? Is this of any ...
24
votes
6answers
2k views

Disadvantages of Scala type system versus Haskell?

I have read that Scala's type system is weakened by Java interoperability and therefore cannot perform some of the same powers as Haskell's type system. Is this true? Is the weakness because of type ...
23
votes
1answer
568 views

What type systems can prevent goal suspension in logical languages?

From section 3.13.3 of the curry tutorial: Operations that residuate are called rigid , whereas operations that narrow are called flexible. All defined operations are flexible whereas most ...
22
votes
2answers
3k views

Why is PartialFunction <: Function in Scala?

In Scala, the PartialFunction[A, B] class is derived from type Function[A, B] (see Scala Reference, 12.3.3). However, this seems counterintuitive to me, since a Function (which needs to be defined for ...
21
votes
5answers
962 views

Can good type systems distinguish between matrices in different bases?

My program (Hartree-Fock/iterative SCF) has two matrices F and F' which are really the same matrix expressed in two different bases. I just lost three hours of debugging time because I accidentally ...
21
votes
7answers
898 views

Explain “C fundamentally has a corrupt type system”

In the book Coders at Work (p355), Guy Steele says of C++: I think the decision to be backwards-compatible with C is a fatal flaw. It’s just a set of difficulties that can’t be overcome. C ...
21
votes
7answers
2k views

Why are Haskell algebraic data types “closed”?

Correct me if I'm wrong, but it seems like algebraic data types in Haskell are useful in many of the cases where you would use classes and inheritance in OO languages. But there is a big difference: ...
20
votes
1answer
737 views

What is Haskell's style of polymorphism?

With Haskell's type classes it almost seems that it enables ad hoc polymorphism, but its functions declarations seem parametric polymorphism. Am I mixing my understanding of different things?
19
votes
1answer
269 views

Which property of Scala's type-system make it Turing-complete? [closed]

Scala uses a type-system based on System F ω, which is normally said to be strongly normalizing. Strongly normalizing implies non-Turing completeness. Nevertheless, Scala's type-system is ...
19
votes
4answers
1k views

Contrasting C# generics with Haskell parameterized types

Based on some advice I found on StackOverflow, I'm digging into Haskell. I was pleased to see that Haskell's parameterized types behave very much like C# generics. Both languages advise a single ...
18
votes
4answers
1k views

Haskell type vs. newtype with respect to type safety

I know newtype is more often compared to data in Haskell, but I'm posing this comparison from more of a design point-of-view than as a technical problem. In imperitive/OO languages, there is the ...
17
votes
3answers
414 views

Why can I not make String an instance of a typeclass?

Given: data Foo = FooString String … class Fooable a where --(is this a good way to name this?) toFoo :: a -> Foo I want to make String an instance of Fooable: instance Fooable String ...
17
votes
3answers
1k views

Inferred type appears to detect an infinite loop, but what's really happening?

In Andrew Koenig's An anecdote about ML type inference, the author uses merge sort as a learning exercise for ML and is pleased to find an "incorrect" type inference: Much to my surprise, the ...
15
votes
6answers
404 views

Merging interfaces, without merging

I was thinking, does C++ or Java have a way to do something like this Interface IF1{ .... }; Interface IF2{ .... }; function f(Object o : Implements IF1, IF2){ ... } meaning a ...
15
votes
2answers
509 views

How is the type of `([] ==) []` inferred haskell?

It sounds silly, but I can't get it. Why can the expression [] == [] be typed at all? More specifically, which type (in class Eq) is inferred to the type of list elements? In a ghci session, I see ...
14
votes
5answers
311 views

Is Milner let polymorphism a rank 2 feature?

let a = b in c can be thought as a syntactic sugar for (\a -> c) b, but in a typed setting in general it's not the case. For example, in the Milner calculus let a = \x -> x in (a True, a 1) is ...
13
votes
1answer
339 views

Why does one select Scala type members with a hash instead of a dot?

In Scala, the syntax for selecting a type from a class is different from that of selecting anything else from a class. In that the former uses a hash as the selection operator instead of a dot. Why is ...
13
votes
3answers
476 views

Haskell-like type system in C

I was wondering, is it possible to integrate haskell's powerful type system into a language like C, and still be able to do efficent low level programming?
12
votes
2answers
233 views

What are type projections useful for?

What are type projections in Scala useful for? Why does Scala's type system support both type projections and path dependent types? What was the rationale behind this design decision?
12
votes
3answers
328 views

Using Haskell's type system to enforce modularity

I'm thinking about ways to use Haskell's type system to enforce modularity in a program. For example, if I have a web application, I'm curious if there's a way to separate all database code from CGI ...
12
votes
3answers
493 views

Lifting class instance in Haskell

Is there a way to "lift" a class instance in Haskell easily? I've been frequently needing to create, e.g., Num instances for some classes that are just "lifting" the Num structure through the type ...
12
votes
2answers
536 views

Fundeps and GADTs: When is type checking decidable?

I was reading a research paper about Haskell and how HList is implemented and wondering when the techniques described are and are not decidable for the type checker. Also, because you can do similar ...
11
votes
2answers
349 views

Compile-time and runtime casting c#

I was wondering why some casts in C# are checked at compile-time whereas in other cases the responsibility is dumped on CLR. Like above both are incorrect but handled in a different way. class Base { ...
11
votes
3answers
547 views

Are Rank2Types/RankNTypes practical without polytype variables?

Since type variables cannot hold poly-types, it seems that with Rank*Types we cannot re-use existing functions because of their monotype restriction. For example, we cannot use the function (.) when ...
11
votes
8answers
334 views

Is my understanding of type systems correct?

The following statements represent my understanding of type systems (which suffers from too little hands-on experience outside the Java world); please correct any errors. The static/dynamic ...
10
votes
3answers
229 views

Is there a programming language where types can be parametrized by values?

Parametrized types such as C++ templates are a nice thing, but most of the time they can only be parametrized by other types. However there is a special case in C++ where it is possible to ...
9
votes
3answers
292 views

Comparing design by contract to type systems

I recently read a paper that compared Design-by-Contract to Test-Driven-Development. There seems to be lot of overlap, some redundancy, and a little bit of synergy between the DbC and TDD. For ...
9
votes
2answers
213 views

Typechecking inside quasi-quotes in Template Haskell

I'm trying to become familiar with Template Haskell, and to my surprise the code below compiles under ghc (version 6.10.4). main = do let y = [| "hello" + 1 |] putStr ...
9
votes
6answers
366 views

Why can't I use the as keyword for a struct?

I defined the following struct: public struct Call { public SourceFile caller; public SourceFile callee; public Call(SourceFile caller, SourceFile callee) { this.caller = ...
9
votes
4answers
487 views

Functional Programming and Type Systems

I have been learning about various functional languages for some time now including Haskell, Scala and Clojure. Haskell has a very strict and well-defined static type system. Scala is also statically ...
9
votes
12answers
965 views

What are the limits of type checking and type systems?

Type systems are often criticised, for being to restrictive, that is limiting programming languages and prohibiting programmers to write interesting programmes. Chris Smith claims: We get ...
9
votes
2answers
465 views

What are the limits of type inference?

What are the limits of type inference? Which type systems have no general inference algorithm?
8
votes
1answer
106 views

Numeric type signature

Is it possible to create a type with a numeric argument? i.e. if I want to create a type of integers with a fixed bit-width: newtype FixedWidth w = FixedWidth Integer addFixedWidth :: FixedWidth w ...
8
votes
6answers
673 views

Duck typing, must it be dynamic? [CW]

Wikipedia currently says about duck-typing: In computer programming with object-oriented programming languages, duck typing is a style of dynamic typing in which an object's current set of ...
7
votes
2answers
143 views

How to get rid of this ambiguity?

I am pretty sure this has been asked before, however I was unable to find the right answer: I tried to eliminate the ambiguity in the following exemplary code snippet: {-# LANGUAGE ...
7
votes
2answers
343 views

Dependent types for structured data validation

First of all, I don’t really know what’s wrong with dependent types and why we don’t see them implemented in existing languages for practical programming, instead of inventing all kind of tricks ...
7
votes
5answers
176 views

java Generics Wildcard

I have a question on the use of wildcards in Java Generics. My question is : what is the basic difference between List<? extends Set> and List<T extends Set>? When would I use either?
7
votes
4answers
431 views

in haskell, why do I need to specify type constraints, why can't the compiler figure them out?

Consider the function, add a b = a + b This works: *Main> add 1 2 3 However, if I add a type signature specifying that I want to add things of the same type: add :: a -> a -> a add a b ...
7
votes
5answers
861 views

What makes Haskell's type system more “powerful” than other languages' type systems?

Reading Disadvantages of Scala type system versus Haskell?, I have to ask: what is it, specifically, that makes Haskell's type system more powerful than other languages' type systems (C, C++, Java). ...

1 2 3