Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
3answers
221 views

Deriving different and incomparable types from int in C++

I know I cannot derive from an int and it is not even necessary, that was just one (non)solution that came to my mind for the problem below. I have a pair (foo,bar) both of which are represented ...
16
votes
7answers
765 views

Is checking Perl function arguments worth it?

There's a lot of buzz about MooseX::Method::Signatures and even before that, modules such as Params::Validate that are designed to type check every argument to methods or functions. I'm considering ...
14
votes
2answers
1k views

Try/catch or validation for speed?

I'm working with Python, and whenever I've had to validate function input, I assumed that the input worked, and then caught errors. In my case, I had a universal Vector() class which I used for a few ...
11
votes
5answers
10k views

Java: Instanceof and Generics

Before I look through my generic data structure for a value's index, I'd like to see if it is even an instance of the type this has been parametrized to. But Eclipse complains when I do this: ...
9
votes
5answers
530 views

Is it Pythonic to check function argument types?

I know, type checking function arguments is generally frowned upon in Python, but I think I've come up with a situation where it makes sense to do so. In my project I have an Abstract Base Class ...
9
votes
12answers
967 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 ...
6
votes
5answers
9k views

Type checking of arguments Python [closed]

Duplicate of What is the best (idiomatic) way to check the type of a Python variable? Sometimes checking of arguments in Python is necessary. e.g. I have a function which accepts either the address ...
4
votes
5answers
122 views

When is runtime type checking ok and when is it a bad design? [closed]

Usually, a mention of checking the type of a variable at runtime results in a comment about bad design. Sometimes it seems like it can't be avoided. I would like to see examples of when runtime type ...
4
votes
2answers
209 views

Is a type-safe respond_to in scala possible?

Using a case construct for type-safe casting is easily done in scala. The following code ensures that square gets only called on objects which have an according type. class O class A extends O { ...
4
votes
2answers
387 views

Can someone explain these few lines of MSIL? Why does it move a value off the evaluation stack to a local variable, only to move it back immediately and return it?

The following MSIL code loads a single argument (a string), calls a method, which returns bool, and then returns that bool value. What I don't understand is why it calls stloc.0 to store the method's ...
3
votes
2answers
165 views

Can std::bind be type checked at compile time?

Is it possible to statically type check the arguments given to std::bind? I'm tempted to use it, but it lets me away with almost anything; for example, std::bind(1,2); is accepted. Alternatively I ...
3
votes
2answers
76 views

Type from Scala reflection

Suppose that I have: trait A class B extends A compiled into class files. Later I load those using reflection: val a = Class forName "A" val b = Class forName "B" Could anyone tell me how to ...
3
votes
1answer
58 views

Argument's type in MySQL procedures?

I am writing some MySQL procedures for a web-based application, and something that strikes me is that there is no argument's type check at all. For instance, if I have the following : CREATE ...
3
votes
5answers
218 views

Check compatibility of a method with a given Delegate?

In C# code, how do I check if a given method can be represented by a particular delegate type? I first tried something, based on my Type knowledge, along the lines of: // The delegate to test ...
3
votes
2answers
294 views

Type checker for JavaScript?

Does anyone know if there's a good tool for analyzing JavaScript code and detecting type errors? I know that JavaScript itself is weakly and dynamically typed, but it would be really nice if I could ...
3
votes
3answers
138 views

Syntax / Logical checker In Javascript?

I'm building a solution for a client which allows them to create very basic code, now i've done some basic syntax validation but I'm stuck at variable verification. I know JSLint does this using ...
3
votes
5answers
247 views

Writing an extension method for type T; how can I add a type constraint for a field of T?

Initial situation: I am working with a proprietary framework (ESRI's ArcGIS Engine) which I want to extend with some new functionality. I've chosen to use extension methods in C# for this. Shown ...
3
votes
7answers
308 views

Should I check the types of constructor arguments (and at other places too)?

Python discourages checking the types. But in many cases this may be useful: Checking constructor arguments. e.g. checking foe Boolean, string, dict etc. If I don't and set the object's members to ...
2
votes
3answers
162 views

php type checking for method parameters - is it worth it?

I'm wondering what you think the best practice is here-- does it buy you very much to type-check parameters in PHP? I.e have you actually seen noticeably fewer bugs on projects where you've ...
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
3answers
295 views

Delphi Check variable value in Type Declaration

How can I determine if the value of a variable is within the range of a Type Declaration. Ex. Type TManagerType = (mtBMGR, mtAMGR, mtHOOT); ... var ManagerType: TManagerType; .... procedure ...
2
votes
3answers
434 views

How Can I Check an Object to See its Type and Return A Casted Object

I have method to which I pass an object. In this method I check it's type and depending on the type I do something with it and return a Long. I have tried every which way I can think of to do this ...
1
vote
2answers
110 views

Haskell type checking

I am trying to do some self-learning with Haskell. A function loadData reads some data off the file and based on an integer parameter does some processing on it to produce a Map. I need to create ...
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
2answers
239 views

Can you compare the “types” of tables or metatables in Lua?

I am calling an API function in the Lord of the Rings Online (LOTRO) Beta Lua scripting feature. The API method returns a "type" called ClassAttributes that will be on of the given Class Attribute ...
1
vote
0answers
94 views

Geometry library that supports differentiating between UCS and GCS

This is related to the following thread: http://stackoverflow.com/questions/1046248/what-are-some-recommended-frameworks-for-manipulating-spatial-data-in-c/4090695 Do you know of a geometry library ...
1
vote
2answers
259 views

Strong typedef static checker (unix)

Is there a free tool (some kind of a static checker) that does typedef-based type-checking for a plain C (not C++) and runs on Linux (or any kind of free Unix)? I am aware of a commercial one: ...
1
vote
3answers
625 views

Is there a way to enforce runtime type-checking in Objective-C on Cocoa?

Hi I'm finding a way to enforce runtime type checking or such things in Objective-C on Cocoa. This is my code sample. I expected runtime error about wrong assignment to variable 'b'. But it wasn't. ...
1
vote
3answers
490 views

Checking type parameter of a generic method in C#

Is it possible to do something like this in C#: public void DoSomething<T>(T t) { if (T is MyClass) { MyClass mc = (MyClass)t ... } else if (T is ...
1
vote
4answers
2k views

OCaml: Type Checking Objects

If I have an object, how can I determine its type? (Is there an OCaml equivalent to Java's instanceof operator?)
0
votes
2answers
49 views

How show only a view of an interface in java

Is it possible to show only a particular view of an interface or approximate this behavior in Java? For example: public interface SecureDevice { bool connectWith( SecureDevice d ); // visible to ...
0
votes
2answers
60 views

Need to determine type of object at runtime Java. Bad design?

I am writing a particle transport code. In this code physical objects implement an interface Volume. One implementer of Volume is the case of interest for this code-- the Particle class. In my design, ...
0
votes
5answers
68 views

Check whether a variable is a string in Ruby

Is there anything more idiomatic than the following? foo.class == String
0
votes
2answers
82 views

X.Single((c) => c is [type]) doesn't work

I've got a List<Component> collection (Component is a custom class) with a single element that inherits from XTYPE. But for some reason this doesn't work: X = (XTYPE)Components.Single((c) ...
0
votes
1answer
59 views

How to check the type of a Parameter in an Expression Tree (similar to 'is' keyword)

How do I check the type of a Parameter in an Expression Tree (and get the Expression Tree equivalent of a bool if it the right type)? If it were normal code, I would do this: if(myObj is int) I see ...
0
votes
3answers
74 views

is there a way to check if a param contains a class or a class instance?

I want the wrapper my_function to be able to receive either a class or class instance, instead of writing two different functions: >>> from module import MyClass >>> ...
-1
votes
3answers
143 views

Why doesn't this typecheck?

compress xs@(_:_:_) = (ifte <$> ((==) <$> head <*> head.tail) <$> ((compress.).(:) <$> head <*> tail.tail) <*> ((:) <$> head <*> compress.tail) ) ...