Tagged Questions

A typechecker enforces that expressions in a given programming language are well typed -- i.e. conform to the rules of a particular type system.

learn more… | top users | synonyms

22
votes
10answers
9k views

What is the best (idiomatic) way to check the type of a Python variable?

I need to know if a variable in Python is a string or a dict. Is there anything wrong with the following code? if type(x) == type(str()): do_something_with_a_string(x) elif type(x) == ...
19
votes
3answers
385 views

Algorithm for type checking ML-like pattern matching?

How do you determine whether a given pattern is "good", specifically whether it is exhaustive and non-overlapping, for ML-style programming languages? Suppose you have patterns like: match lst with ...
15
votes
5answers
169 views

Best practice for determining objects type in Javascript

If you have an instance of an object in javascript, it seems it that can be difficult to find its actual type, ie var Point2D = function Point2D(x, y) { return { X: x, Y: y } } var p = ...
13
votes
2answers
179 views

Type error when ascribing a valid forall type to a let-bound variable

Is this a bug in the type checker? Prelude> let (x :: forall a. a -> a) = id in x 3 <interactive>:0:31: Couldn't match expected type `forall a. a -> a' with actual ...
11
votes
2answers
343 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 ...
11
votes
3answers
5k views

Check if Ruby object is a Boolean

Can't seem to find how to check if an object is a boolean easily. Is there something like this in Ruby? true.is_a?(Boolean) false.is_a?(Boolean) Right now I'm doing this and would like to shorten ...
9
votes
12answers
966 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
9answers
4k views

Enforce strong type checking in C (type strictness for typedefs)

Is there a way to enforce explicit cast for typedefs of the same type? I've to deal with utf8 and sometimes I get confused with the indices for the character count and the byte count. So it be nice to ...
7
votes
1answer
107 views

Type errors with Existential types in Haskell

I am struggling with existential types in my program. I think I'm trying to do something very reasonable however I cannot get past the typechecker :( I have a datatype that sort of mimics a Monad ...
7
votes
3answers
205 views

Fast way to type check Symbol in a function with held arguments

One can test if an argument is a Symbol without a explicit value using: func[s_Symbol] = ... If the function has a Hold attribute however, that pattern will match all Symbols, not only those ...
6
votes
3answers
201 views

Objective C protocols usage

I have a homework question which confused me, really badly. Below is a brief explanation of a question. Imagine you are developing an application that stores contact information. The address ...
6
votes
7answers
354 views

Comparing expressions of type object

Okay, this is probably very simple but, I have the below "checks" (not at the same time) and the First ALWAYS evaluates to TRUE while the Second SEEMS to work. This actually happens in each place ...
6
votes
3answers
322 views

What is the easiest way to do 'is' in Java?

Many languages have a facility to check to see if an Object is of a certain type (including parent subclasses), implemented with 'is' and used like this: if(obj is MyType) Or slightly more ...
5
votes
1answer
106 views

Haskell: Why does this type-check?

This is a minimal example taken from the Reflection-0.5. {-# LANGUAGE Rank2Types, MultiParamTypeClasses, FunctionalDependencies, FlexibleInstances #-} {-# OPTIONS_GHC -fno-cse -fno-full-laziness ...
5
votes
1answer
92 views

clojure sequence type

What's the correct type of a sequence? I have this code: (defrecord MethodInfo [^clojure.lang.ISeq preconds ^clojure.lang.ISeq postconds]) But it doesn't seem to correctly enforce the type ...
5
votes
3answers
322 views

type checking in C++

sorry for this question but I'm not a C++ developer, In C++, I want to know whether the actual type of the object is from the same class [not derived one] like the following in C# Class Base { } ...
5
votes
2answers
357 views

Better type checking on match in Scala

scala> class A defined class A scala> class B defined class B scala> val a: A = new A a: A = A@551510e8 scala> a match { | case _: B => println("unlikely") | case _ => ...
5
votes
2answers
149 views

Java snippet that causes stack overflow in the compiler or typechecker (javac)?

Yesterday at a seminar the presenter showed a small java program, with 3 classes, featuring both co-variance and contra-variance. When attempting to compile using javac, the type checker will throw a ...
5
votes
3answers
2k views

How do I detect that an object is a generic collection, and what types it contains?

I have a string serialization utility that takes a variable of (almost) any type and converts it into a string. Thus, for example, according to my convention, an integer value of 123 would be ...
4
votes
3answers
76 views

Pythonic way to handle a method on network data structure

So, another question on what is Pythonic! The application domain in this case is network algorithms (as in, nodes, edges, Dijkstra, that kind of thing...), something I have only previously coded in ...
4
votes
3answers
244 views

How to check in F# whether object implements interface

Prototypical code in C#: if(obj1 is ISomeInterface) { do_something } Code in F# that doesn't compile: match obj1 with | :? ISomeInterface -> do_something | _ -> ()
4
votes
6answers
215 views

What is the best way to tell users of my library functions that passed variables are not of the correct type

I'm currently in the creation of a javascript function library. Mainly for my own use, but you can never be sure if someone else ends up using it in their projects, I'm atleast creating it as if that ...
3
votes
2answers
178 views

Variable type validation

I have methods which parameters can only handle certain types of variable. I have a few ideas on how to validate these type and I need your help to choose the best way. I could: Just return false if ...
3
votes
7answers
288 views

Is Type Checking a Code Smell in this code?

I have an interface "IPartyCountService" that counts number of customers and number of suppliers. The implementation class "PartyCountService" makes use of type checking to check whether the party is ...
3
votes
1answer
124 views

Design choices to remove if-is statements

Say i have a class hierarchy of domain objects with one base class and a couple of child classes, one level. Let say I have a list of those objects (list of the base class) and I want to apply some ...
3
votes
5answers
468 views

How to get printf style compile-time warnings or errors

I would like to write a routine like printf, not functionally-wise, but rather I'd like the routine to have the same time compile check characteristics as printf. For example if i have: { int i; ...
3
votes
4answers
376 views

Check if something is a list

What is the easiest way to check if something is a list? A method doSomething has the parameters a and b. In the method, it will loop through the list a and do something. I'd like a way to make sure ...
3
votes
6answers
246 views

Is it possible to avoid using type checking in this example?

Sorry for the poor title, can't think of a succinct way of putting this.. I'm thinking of having a list of objects that will all be of a specific interface. Each of these objects may then implement ...
2
votes
1answer
48 views

specify own delegate in class, have type checking in Interface Builder

I wrote an objective-C class that needs to notify another class, so i defined a protocol for a delegate: @protocol glob_protocol <NSObject> @required - (IBAction) call:(int) val val2:(int) ...
2
votes
2answers
63 views

Typechecking and generics in java generates warnings

I have the following inline Comparator. private static class SampleSorter implements Comparator<SampleClass>{ public int compare(SampleClass o1, SampleClass o2) { if (o1 instanceof ...
2
votes
2answers
221 views

Test if Haskell variable matches user-defined data type option

So I have a data type sort of like: data Token = NUM Int | ID String | EOF and I have a function sort of like: doStuff list = let (token, rest) = getToken list in .... So what I ...
2
votes
1answer
111 views

What is the best practice when type checking option hash values in a ruby C extension?

I'm developing a C extension for ruby, one of the functions from the C library I'm accessing receives an options struct which seems to be naturally translate to an options hash in ruby-world. The ...
2
votes
2answers
120 views

Checking for a particular data constructor

let's say that i defined my own data-Type like data MyData = A arg| B arg2| C arg3 how would i write a function (for instance: isMyDataType) that checks wether the given argument is one out of the ...
2
votes
2answers
93 views

What is the pythonic/faster way to check if the “key” argument of a custom __getitem__ method is a slice?

I have a custom Sequence type. It is essentially a wrapper for a list plus a boolean flag and I wanted it to emulate usual immutable sequence behavior. My issue is with slicing. I understand that in ...
2
votes
1answer
122 views

Need help with avoiding lists in condition or pattern tests

How can we use a conditional or pattern test to make our function accept any symbols as input except for lists?
2
votes
1answer
84 views

Ocaml type error confusion: why is this making an error?

let rec add_tail l e = match l with | [] -> [e] | (h::t) -> h::(add_tail t e) let rec fill_help l x n = match n = 0 with true -> l | false -> add_tail(l, ...
2
votes
3answers
388 views

Verilog linting tools?

What are some good linting tools for verilog? I'd prefer one that can be configured to either handle or ignore certain vendor specific primitives like LUT's, PLL's, etc. I recently tried ...
2
votes
2answers
84 views

Is there any way to check that a type is a type of enumeration?

Somebody gives me a type t. I'd like to know if that type is an enumeration or not. public bool IsEnumeration(Type t) { // Mystery Code. throw new NotImplementedException(); } public void ...
2
votes
3answers
197 views

Type checker libraries

I'm witting a compiler and I'm searching for a library that could do type checking for me. So far I didn't find anything useful=/ Does anyone know good type checking libraries? I'm using Haskell, ...
2
votes
2answers
100 views

type checking across source files

I spent many hours debugging a problem that turned out to be caused by two source files including two header files in a different order. One of those headers defined _FILE_OFFSET_BITS to 64, and the ...
2
votes
5answers
806 views

How to see if a type implements an interface in VB.Net?

I need to know if a Type implements an interface. Dim asmRule As System.Reflection.Assembly = System.Reflection.Assembly.LoadFrom(System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, ...
2
votes
3answers
201 views

Is this a good reason to check types in Python?

I know that checking types in Python is bad and you should probably never do it. But I can't seem to find the disadvantage to this. class O(object): def __init__(self, name): ...
2
votes
2answers
202 views

Is there a good way to force type incompatibility in C?

For purposes of type checking I would like to define a function on the lines of void myfunc(type1 a, type2 b) { ... } where type1 and type2 are both typedefed to uint8_t. So far so good, but for ...
2
votes
5answers
804 views

Checking real variable type in polymorphism (C++)

Suppose we have a class A and class B and C inherit from it. Then we create an array of references to A's, and fill it with B's and C's. Now we decided that we want to eliminate all the C's. Is ...
1
vote
3answers
119 views

Static typechecking in erlang

I'm slowly falling in love with Erlang, and only have one big, BIG problem. I'm a big fan of languages like Standart ML and ocaml with their strong static typechecking. is there a nice and clean way ...
1
vote
1answer
53 views

Returning list in ANTLR for type checking, language java

I am working on ANLTR to support type checking. I am in trouble at some point. I will try to explain it with an example grammar, suppose that I have the following: @members { private ...
1
vote
3answers
185 views

Error in nested list comprehension in Haskell code

I am trying to write the following list comprehension in Haskell and it doesn't typecheck. I am new at this and can't really figure out why. something :: Int -> [Int] something n = [[ 2 * x + 1 | ...
1
vote
1answer
112 views

Run of dialyzer after annotation with typer did not show any warnings

In a project with about 6000 lines of Erlang code but no type -spec() annotation yet I tried the following: typer --annotate *.erl The I replaced all *.erl files with the annotated ones and ran ...
1
vote
3answers
302 views

How do I determine the type of the implementing object of an interface

I'm attempting to write a unit test for a simple factory class that creates one of several possible implementing objects and returns it as an interface reference. DUnit has a built in procedure, ...
1
vote
4answers
244 views

Logical argument checking in python

I am not sure my question has a concrete answer, but anyway. I am writing a function with a lot of parameters, each one can be either None or have a limited range of values. Since I don't trust the ...

1 2