2
votes
4answers
113 views
Bitflag enums in C++
Using enums for storing bitflags in C++ is a bit troublesome, since once the enum values are ORed they loose their enum-type, which causes errors without explicit casting.
The acc …
2
votes
6answers
171 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 claim …
2
votes
7answers
325 views
From Static Typing to Dynamic Typing
I have always worked on staticly typed languages (c/c++,java). For the poast months i have been playing with clojure and i really like it. One thing i am worried about is, say that …
6
votes
6answers
1k 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 t …
4
votes
4answers
154 views
What uses have you found for higher-rank types in Haskell?
Higher rank types look like great fun. From the Haskell wikibook comes this example:
foo :: (forall a. a -> a) -> (Char,Bool)
foo f = (f 'c', f True)
Now we can evaluate foo id …
2
votes
4answers
165 views
What is a type inferencer?
Does it only exist in statically typed languages? And is it only there when the language is not strongly typed (i.e. does Java have one)? Also, where does it belong - in the compil …
7
votes
5answers
311 views
Language features to implement relational algebra
I've been trying to encode a relational algebra in Scala (which to my knowlege has one of the most advanced type systems) and just don't seem to find a way to get where I want.
As …
3
votes
1answer
137 views
Explicit type recursion in F#
Inspired by this question:
Is explicit type recursion possible in F#?
type 'a Mu = In of 'a Mu 'a
let unIn (In x) = x
This code unfortunatly gives "Type parameter cannot be us …
4
votes
2answers
134 views
What are the limits of type inference?
What are the limits of type inference? Which type systems have no general inference algorithm?
6
votes
2answers
276 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 …
6
votes
2answers
340 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 nee …
2
votes
8answers
244 views
What are the deficiencies of the Java/C# type system?
Its often hear that Haskell(which I don't know) has a very interesting type system.. I'm very familiar with Java and a little with C#, and sometimes it happens that I'm fighting th …
3
votes
3answers
301 views
What is a type and effect system?
The Wikipedia artcile 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 ef …
6
votes
4answers
523 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. …
5
votes
7answers
1k views
Haskell’s algebraic data types
I trying to grok all of Haskell's concepts.
In what ways are algebraic data types similar to generic types, e.g., in C# and Java? And how are they different? What's so algebraic a …
