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)

0
votes
1answer
41 views

Iterate over all structs in a module

I'm writing a ModulePass and I need to analyze every struct defined in the given module. I understand that identified structs with a name are inserted in the ValueSymbolTable, but how can I iterate ...
2
votes
1answer
30 views

How is the syntax of type systems read?

I have the following types for functions: Quad = square · square Square :: Integer -> Integer (So this function takes an integer as an input and outputs an integer) The operator · is used in the ...
5
votes
2answers
149 views

Scala: Ordering contravariance

Is there any reason why Scala's Ordering trait is not contravariant? A motivating example follows. Suppose I want to perform an ordered insert. I may have a function with the signature def insert[A, ...
3
votes
3answers
67 views

How to implement equals for generic pairs?

Just for fun, I'm trying to implement a generic Pair class in Java. I'm having trouble with equals: public class Pair<A, B> { public final A _1; public final B _2; // ... ...
-2
votes
6answers
99 views

how to take input in c(not in c++) irrespective of datatype? I want to have a generic variable which can store any kind of datatype variable [closed]

Actually I want to have a variable which will receive every kind of value whether it is int or float or char. Can anyone please tell me a way to do this. But the program should be in C (not in C++).
10
votes
1answer
251 views

Scoped type variables require explicit foralls. Why?

If you want to use GHC's lexically scoped type variables, you also have to use explicit universal quantification. That is, you have to add forall declarations to your functions' type signatures: {-# ...
13
votes
2answers
336 views

Understanding Polytypes in Hindley-Milner Type Inference

I'm reading the Wikipedia article on Hindley–Milner Type Inference trying to make some sense out of it. So far this is what I've understood: Types are classified as either monotypes or polytypes. ...
0
votes
0answers
71 views

Is Python really strongly typed? [duplicate]

It is clear to me that Python is dynamically typed and that dynamic versus static typing is independent from strongly versus weakly typed. (Just to get possible confusion out of the way.) Wikipedia ...
11
votes
1answer
131 views

Understanding scala's _ vs Any/Nothing

If a class has a convariant type parameter such as Iterable[+A], is there any difference between declaring def foo(bar: Iterable[_]) and def foo(bar: Iterable[Any]) ? If a class has a ...
5
votes
2answers
155 views

Scala - Enforcing size of Vector at compile time

Is it possible to enforce the size of a Vector passed in to a method at compile time? I want to model an n-dimensional Euclidean space using a collection of points in the space that looks something ...
4
votes
1answer
120 views

Container of references / non-nullable pointers

I usually use references instead of pointers when I want NULL not to be possible. Since we can't have containers of references, what should be the type of a container that contains only non-null ...
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 ...
3
votes
1answer
83 views

Scala - a type-parametrized trait method returning a type-parametrized object - how to implement?

I have the following class hierarchy: trait Entity { type E <: Entity type S <: Something[E] def in: S } trait Something[E <: Entity] { def doSomething { // something } } ...
7
votes
1answer
87 views

Disallow mix of specific traits

Given: trait Foo trait Bar { this: Foo => } trait NoBar { this: Foo => } Is there a way a can trick the type system into disallowing: new Foo with Bar with NoBar {}
14
votes
3answers
396 views

Haskell's type system and logic programming - how to port Prolog programs to type level

I'm trying to understand the relation between a logic programming language(Prolog in my case) and Haskell's type system. I know both use unification and variables to find values(or types, in ...
1
vote
4answers
202 views

How to handle a collection of Foo<T>, where T can be different for each item?

Problem description I am trying to store a collection of generic Foo<T> elements, where T may be different for each item. I also have functions like DoSomething<T>(Foo<T>) that can ...
3
votes
2answers
156 views

Scala - return a type

I want to return a type from a function. For example: class Super case class One(a: Int) extends Super case class Two(b: Float) extends Super case class Unknown extends Super def decide(criterion: ...
3
votes
1answer
76 views

Python Type System - Object vs Type

I am new to Python. I am familiar with Java, C/C++, and OCaml. I understand Lambda Calculus and elementary Type Theory because of a Programming Languages course I took at University. Armed with this ...
51
votes
4answers
3k views

Why not be dependently typed?

I have seen several sources echo the opinion that "Haskell is gradually becoming a dependently-typed language". The implication seems to be that with more and more language extensions, Haskell is ...
5
votes
1answer
196 views

Why is (a, a) not a functor? [duplicate]

Possible Duplicate: Making (a, a) a Functor I wrote the following implementation of quicksort: import Data.List (partition) quicksort [] = [] quicksort (x:xs) = let (smaller, ...
1
vote
2answers
127 views

Scala - match a passed parameter against a passed type parameter in a recursive function

I have a node class, which can point to another node (via next). That node can be subclassed in different hierarchies. Then, I can have a chain of these various nodes, in an image of a single-linked ...
1
vote
1answer
76 views

Why does dialyzer find my type specification invalid?

I am new to dialyzer, and I am hoping someone could give me a quick idea of it's operation by answering this question. I would think that the following function, given a number X and a non-negative ...
3
votes
3answers
96 views

How to use a class's type as the type argument for an inherited collection property in C#

I am trying to create a representation of various types of card that inherit from a generic card class and which all contain references to their owning decks. I tried re-declaring them, as suggested ...
0
votes
1answer
41 views

Scala and Polytypic container

I've some issue. I need store a functions into the Map but this functions must have different types of parameters. ie: Map(1 -> Int => String, 2 -> String => SomeClass) and so on. So, ...
3
votes
1answer
232 views

variance annotation, keeping track “positive” and “negative” positions by Scala compiler

In Programming in Scala page 436, the author gives an example of the compiler checking that each type parameter is only used in positions that are classified appropriately. abstract class Cat[-T, +U] ...
12
votes
3answers
331 views

Programmatic type annotations in Haskell

When metaprogramming, it may be useful (or necessary) to pass along to Haskell's type system information about types that's known to your program but not inferable in Hindley-Milner. Is there a ...
14
votes
3answers
428 views

Applying a fixed-length-vector-function to the inital part of a longer fixed-length-vector

I have the following definition of fixed-length-vectors using ghcs extensions GADTs, TypeOperators and DataKinds: data Vec n a where T :: Vec VZero a (:.) :: a -> Vec n a -> Vec ...
2
votes
1answer
206 views

Type constraint for type inequality in scala [duplicate]

Possible Duplicate: Enforce type difference Since there is a generalized type constraint enforcing equality in scala =:=, is there one that enforces "not equals" for types? Basically != but ...
2
votes
1answer
86 views

scala type 'extraction'

This might not be the most correct terminology but what I mean by boxed type is Box[T] for type T. So Option[Int] is a boxed Int. How might one go about extracting these types? My naive attempt: ...
6
votes
2answers
163 views

Ostensible inconsistencies in singleton types

I have a couple of questions about singleton types, but since they're both very closely related, I am posting them under the same thread. Q1. Why does #1 does not compile but #2 does? def id(x: ...
3
votes
2answers
122 views

How do units flow through matrix operations?

It seems that there are many useful applications for matrix math where not all entries in a given matrix share the same units. I want to look into type systems that could track these units and ensure ...
3
votes
1answer
104 views

Why can scala not Infer that Left[X,A] is a reasonable subtype of Either[X,B]?

Why does this code not type check? def foo: Either[String, List[Int]] = { val x = null: Either[String, String] x match { case l @ Left(_) => l case Right(_) => Right(List(3)) } ...
1
vote
1answer
38 views

Web framework with static checking

Most of the web frameworks available on the market allow a lot of dynamic features: You access session elements and request paramaters with untyped, typically, string keys You reference other pages ...
5
votes
1answer
221 views

Unable to map on HList

I was trying to solve this problem with shapeless. However I am for some reason unable to map on the HList. I'll let the code speak for itself. import shapeless._ import HList._ case class Foo(a: ...
1
vote
4answers
90 views

Scala - finding sequence members that are of a certain type's child type

I have the following situation: Java lib class: class LibClass { ArrayList<LibClass> children; } my program Scala code: abstract class MyClass extends LibClass { def boom { } def ...
8
votes
2answers
341 views

Binding name in type signature using DataKind

So, I finally found a task where I could make use of the new DataKinds extension (using ghc 7.4.1). Here's the Vec I'm using: data Nat = Z | S Nat deriving (Eq, Show) data Vec :: Nat -> * -> * ...
3
votes
3answers
185 views

How does the c# language prevent generics from being covarient unless they contain no methods that require T as an input?

I have been reading up on the changes that .NET4.5 will bring, and on this blog post I stumbled upon something I neither knew nor understood. When talking about the implementation of readonly ...
19
votes
5answers
694 views

Why is function definition for all types at once not allowed in Haskell?

This is probably a very basic question, but ... A function that's defined as, say foo :: a -> Integer denotes a function from any type to an Integer. If so, then in theory one should be able to ...
6
votes
1answer
133 views

Message equivalent of dependent method types

Thanks to this post I'm getting my head around dependent method types. I have a structure similar to the following trait Environment{ type Population <: PopulationBase protected trait ...
44
votes
3answers
1k views

What's the theoretical basis for existential types?

The Haskell Wiki does a good job of explaining how to use existential types, but I don't quite grok the theory behind them. Consider this example of an existential type: data S = forall a. Show a ...
4
votes
3answers
314 views

what is a fully type-inferred language? and limitations of such language?

As far as I know,any programming language which doesn't require to write type annotations in the source while writing a function or module and if that chunk of code is "type-correct" , compiler will ...
6
votes
2answers
1k views

OCaml Printf.sprintf

Why does this behavior occur? # Printf.sprintf ("Foo %d %s") 2 "bar";; - : string = "Foo 2 bar" # Printf.sprintf ("Foo %d" ^ " %s") 2 "bar";; Printf.sprintf ("Foo %d" ^ " %s") 2 "bar";; Error: ...
5
votes
2answers
164 views

Why names form a kind and not just a type?

Some time ago in one of Haskell extensions (can't find the link), and recently in Ur I've found that names (e.g., of record fields) form a Kind. Can somebody explain why Type abstraction is not enough ...
0
votes
2answers
185 views

Scala - Supertype of a type parameter

In Scala, how can I do something like this: def cast [Type] (x: _ >: Type, errMsg: String): Type = { if (x.isInstanceOf[Type]) { x.asInstanceOf[Type] } else { throw new ...
6
votes
3answers
517 views

Small and good scala projects to learn scala — especially functional programming and type system

I've studied scala for several months, but still at the beginner level. Now I found I have huge trouble with functional programming and scala's type system. I tried finding some documents and blogs, ...
3
votes
1answer
175 views

Does D have a sufficiently expressive type system to make it feasible to work dynamically?

Does D have a sufficiently expressive type system to make it feasible to work dynamically (that is, with multiple classes of values) within a statically typed framework? I ask, after reading Dynamic ...
11
votes
2answers
992 views

How to learn agda

I am trying to learn agda. However, I got a problem. All the tutorials which I found on agda wiki are too complex for me and cover different aspects of programming. After parallel reading of 3 ...
9
votes
4answers
411 views

What does the `#` operator mean in Scala?

I see this code in this blog: Type-Level Programming in Scala: // define the abstract types and bounds trait Recurse { type Next <: Recurse // this is the recursive function definition type ...
5
votes
1answer
79 views

How to use UndecidableInstances locally?

Yes, I know that UndecidableInstances can be bad. I really tried hard to design my module so that it doesn't need it however I have something like this: instance Foo x (C x y) => Bar (C x y) where ...
13
votes
1answer
625 views

Haskell existential quantification in detail

I have a general idea of what existential quantification on types is and where it can be used. However from my experiences so far, there are a lot of caveats that need to be understood in order to use ...

1 2 3 4