Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
9answers
991 views

Why does null exist in .NET?

Why can values be null in .NET? Is this superior to having a guarantee where everything would have a value and nothing call be null? Anyone knows what each of these methodologies are called? Either ...
13
votes
3answers
529 views

Can this functionality be implemented with Haskell's type system?

In Scala, the higher order operations on collections always return the best possible type in the context. For example, in case of BitSet, if you map ints to ints you get a BitSet, but if you map ints ...
11
votes
1answer
423 views

Is it possible to place inequality constraints on haskell type variables?

Is it possible to place an inequality constraint on the typevariables of a function, à la foo :: (a ~ b) => a -> b as in GHC type family docs, except inequality rather than equality? I realise ...
7
votes
9answers
316 views

Would .NET be able to function just as well without the use of type Object?

I am asking this because it seems like using Object seems to be an easy way out to solve certain problems, like "I don't have a specific type, so use Object", etc. Also the reason this made me ...
6
votes
2answers
324 views

C#: using type of “self” as generic parameter?

This may seem a bit odd, but I really need to create a workaround for the very complicated duplex - communication - handling in C#, especially to force other developers to observe the DRY - principle. ...
5
votes
2answers
70 views

Can a type be a reference type and a value type at the same time?

If not and the set of reference types and value types are mutually exclusive, why doesn't this compile: public static void Do<T>(T obj) where T : struct { } public static void Do<T>(T ...
5
votes
2answers
239 views

Accessing type members outside the class in Scala

I am trying to understand type members in Scala. I wrote a simple example that tries to explain my question. First, I created two classes for types: class BaseclassForTypes class OwnType extends ...
5
votes
4answers
840 views

Best way to check if System.Type is a descendant of a given class

Consider the following code: public class A { } public class B : A { } public class C : B { } class D { public static bool IsDescendantOf(this System.Type thisType, System.Type ...
3
votes
2answers
111 views

Scala compiler fails to infer type parameters

In order to create a DSL for my new Scala project I've written the following code: trait DocDB[O] { def searchFor[I] (docs: Iterable[I], queryStrategy: QueryStrategy[I, DocDB[_]]): ...
3
votes
1answer
143 views

Can one create Sized Types in Scala?

Is it possible to create types like e.g. String(20) in scala? The aim would be to have compiler checks for things like: a: String(20) b: String(30) a = b; // throws a compiler exception when no ...
2
votes
2answers
172 views

How do you explicitly specify a parameterized type for an existential type in Scala?

In Programming in Scala, the following example is given to show how to reference a Java class with wildcards. The method javaSet2ScalaSet takes a type T. Typically, you can always explicitly supply ...
2
votes
4answers
310 views

How does custom F# types map to CLR types?

I don't know if the title of the question is clear but I am wondering the actual types of custom F# types. Like in C#, there are value types and reference types. For F#, is there a single type that ...
1
vote
2answers
131 views

How to hint types when compiling with llvm-gcc?

In some C code, I'm defining a simple static array as a function argument, say: void foo(float color[3]); When I compile it with llvm-gcc, it produces the following LLVM assembly language output: ...
1
vote
2answers
458 views

HowTo get the class of _ :Any

I've wrapped a Message and would like to log which message I've wrapped. val any :Any = msg.wrappedMsg var result :Class[_] = null The only solution I could find is matching everything: result = ...
1
vote
2answers
250 views

Ocaml Int and negative values

Given this snippet of OCaml code: let rec range a b = if a > b then [] else a :: range (a+1) b ;; The Repl tells me that it's type is: val range : int -> int -> int list = ...
1
vote
5answers
157 views

type of system.Collection <T>

I'm creating a list of <T>, but i want to know the type of that T-object. (i'm using reflection in my project, so i don't know the type when i'm creating my code. So first i have my List --> ...
0
votes
3answers
354 views

why optional typing in Dart?

http://www.dartlang.org/docs/spec/dartLangSpec.pdf The language spec for Dart mentions below Dart supports optional typing based on interface types. The type system is unsound, due to the ...
0
votes
0answers
58 views

The Proper Class Design For Designing a Language Type System

I am designing a language for my own purposes. It will have two entities basically, functions and types. e.g. Object1 = CreateObject1("param1", "param2", 23 ) //Line 1 Object3 = Object1 + Object2 ...
0
votes
1answer
80 views

Abstraction hindering use of custom types, what are the rules to follow in an implementation?

I have built a custom typesystem for usage in C# scripting inside an application. The scripts are compiled on-the-fly and allow interaction with the application internal data. This typesystem is ...
0
votes
3answers
336 views

F# return type coercion

In F# I have a function that returns System.Linq.Expression instances: and System.Object with member this.ToExpression() = match this with | :? System.Int32 -> Expression.Constant(this) ...
0
votes
4answers
198 views

An error with Haskell classes I fall all the time and can't understand

there's an error I come across all the time but can't understand how to make it right. An example of code that gives me this error is: class Someclass a where somefunc :: (Num b) => b -> a ...