Tagged Questions

6
votes
3answers
207 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, r …
5
votes
3answers
397 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 sty …
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 …
3
votes
3answers
302 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 …
3
votes
2answers
192 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 b …
0
votes
2answers
138 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?