Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
4answers
593 views

Why am I getting a generic constraint violation at runtime? [closed]

I'm getting the following exception while trying to create a new instance of a class that heavily relies on generics: new TestServer(8888); System.TypeLoadException GenericArguments[0], ...
11
votes
4answers
468 views

Why does Haskell stop short of inferring the datatype's typeclasses in the function signatures?

Firstly, this question isn't 100% specific to Haskell, feel free to comment on the general design of typeclasses, interfaces and types. I'm reading LYAH - creating types and typeclasses The following ...
10
votes
2answers
181 views

Reflexive type parameter constraints: X<T> where T : X<T> ‒ any simpler alternatives?

Every so often I am making a simple interface more complicated by adding a self-referencing ("reflexive") type parameter constraint to it. For example, I might turn this: interface ICloneable { ...
10
votes
5answers
121 views

Difference between interface as type constraint and interface as parameter?

If I wanted to create a method that takes an instance of IList as a parameter (or any other interface, but let's use IList as an example), I could create a generic method with a type constraint, e.g.: ...
10
votes
2answers
409 views

How do I translate this C# code (with generic type constraints) to F#?

F# is giving me some trouble with its type inference rules. I'm writing a simple computation builder but can't get my generic type variable constraints right. The code that I would want looks as ...
8
votes
3answers
234 views

Why Do I need to redeclare type constraint in generic subclass

Recently I tried to create a generic subclass by implementing a generic interface. public interface IModule<T> where T : DataBean { ..... } public class Module<T> : IModule<T> where ...
8
votes
3answers
3k views

C# generic “where constraint” with “any generic type” definition?

Let me give example: I have some generic class/interface definition: interface IGenericCar< T > {...} I have another class/interface that I want to relate with class above, for example: ...
8
votes
4answers
4k views

How to define generic type limit to primitive types?

I have the following method with generic type: T GetValue<T>(); I would like to limit T to primitive types such as int, string, float but not class type. I know I can define generic for class ...
7
votes
2answers
130 views

How to constraint a generic to be of type enum?

Consider the following code: class Base<T> { //Base members } I want the generic T to be an enum (using constraints if possible). How can I do this in C#? EDIT: Using code contracts ...
7
votes
2answers
112 views

Why is the compiler choosing this template function over an overloaded non-template function?

Using VC++ 2010, given the following: class Base { }; class Derived : public Base { }; template<class T> void foo(T& t); // A void foo(Base& base); // B Derived d; ...
6
votes
2answers
100 views

Exchanging a type parameter's upper bound for an evidence parameter

I want to relax the constraints on a trait's type parameter and instead impose them on a method in the form of an evidence parameter. Given some skeletal setup: trait State[ Repr ] object Observer { ...
6
votes
1answer
103 views

Conditional type constraint parameter

I have a class, Container<T>, which has a ContainerContents<T>. The Container actually takes two type constraint parameters Container<TContainer,TContents> - TContainer being the ...
6
votes
5answers
221 views

Constraining an operation by matching a type parameter to an argument's path-dependent type

I would like to exploit Scala's type system to constrain operations in a system where there are versioned references to some values. This is all happening in some transactional context Ctx which has a ...
6
votes
6answers
181 views

How to specify a type parameter which does NOT implement a particular interface?

I have developed some extension methods for objects, which I don't want to be used/shown in intellisense for objects which implements IEnumerable. Conceptually I want something like as follows public ...
6
votes
2answers
199 views

Trying to understand Haskell's => vs defining the types

In Haskell, why would you define a function with a type constraint: ghci> :t (==) (==) :: (Eq a) => a -> a -> Bool Rather than defining it so it's type was: ghci> :t (==) (==) ...
5
votes
3answers
138 views

haskell — rank n constraints? (or, monad transformers and Data.Suitable)

I'm trying to write something that appears to be analagous to "rank 2 types", but for constraints instead. (Or, maybe it's not correct to assume changing -> in the definition of "rank 2 types" to ...
5
votes
3answers
274 views

C# Is it possible to create optional generic type constraints

I think I know the answer to this but I have the need to specify that a generic method can take a type based on two optional constraints. That being that T can be either one type or another. public ...
5
votes
4answers
230 views

Total Collections, rejecting collections of types that do not include all possibilities

Let's say we have the following types: sealed trait T case object Goat extends T case object Monk extends T case object Tiger extends T Now, how do you construct a collection of T such that at ...
5
votes
5answers
290 views

Can I dictate that a C# type parameter must only be an interface type?

I would like to implement a generic C# class which looks roughly as follows: abstract class Foobar<T> : AbstractBase, T { ... } This fails because C# will only allow types after the base ...
5
votes
4answers
405 views

How to Work Around Limitations in Generic Type Constraints in C#?

Okay I'm looking for some input, I'm pretty sure this is not currently supported in .NET 3.5 but here goes. I want to require a generic type passed into my class to have a constructor like this: ...
4
votes
1answer
232 views

Using types to model arbitrary constraints for compile-time checking

Given the strong type system of Scala, I had an ambitious project which I'm about to abandon now because the effort to usefulness ratio seems to be too high. Basically I have some graph elements (GE) ...
4
votes
2answers
178 views

Can one specify on a generic type constraint that it must implement a generic type?

Here is what I would like to do: public interface IRepository<TSet<TElement>> where TSet<TElement> : IEnumerable<TElement> { TSet<TEntity> GetSet<TEntity>(); } ...
3
votes
2answers
99 views

Typeclass constraint of different kind

I have been fiddling with general type classes for lists in Haskell. class HasEmpty a where empty :: a isEmpty :: a -> Bool class HasEmpty (l a) => List l where cons :: a -> l a -> ...
3
votes
2answers
94 views

How does List.max<'T> work?

From MSDN docs, the signature of List.max is: List.max : 'T list -> 'T (requires comparison) My questions are: How does compiler statically verify that 'T supports comparison operation? Is ...
3
votes
4answers
207 views

F# A type parameter is missing a constraint

I'm trying to define a generic addition operator for a wrapper class. So far I have this: (simplified from the actual code) type Wrap<'a> = | Wrap of 'a static member inline (+) (Wrap ...
3
votes
2answers
146 views

implementing a generic interface with type constraints

I have a Visual Studio 2008 C# 2.0 CF project where I am implementing a generic interface, IComparison. The IComparison.Compare method may be called on to do any type of comparison that is valid to ...
3
votes
1answer
158 views

Multiple arity static type constraint

Let's say I have a bunch of vector types (a la XNA) and some of them have static member Cross: type Vector3 = ... static member Cross (a : Vector3, b : Vector3) = new Vector3(...) I can define ...
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
5answers
310 views

When is it important to have a public parameterless constructor in C#?

I'm trying to understand the constraints on generic type parameters in C#. What is the purpose of the where T : new() constraint? Why would you need to insist that the type argument have a public ...
3
votes
4answers
335 views

Non-strict multiple interface type parameter constraints?

Excuse me if this is a dupe, but I couldn't seem to get the right combo of keywords to filter down the various type constraint and generics questions out there (as there are a lot). I have two ...
2
votes
4answers
104 views

What does this C# syntax do?

I am reading a post about mobile web development and ASP.NET MVC here: http://www.hanselman.com/blog/ABetterASPNETMVCMobileDeviceCapabilitiesViewEngine.aspx. In the article, Scott Hanselman goes ...
2
votes
1answer
204 views

C# 4.0 dynamic: A potential performant solution to numeric generics?

After coming up against this problem myself in trying to implement a generic Vector2<int/float/double> in C#, I've done a bunch of investigation into this problem, also described in this ...
2
votes
4answers
256 views

C# Generic Constraints on function

I want to write a generic function that has a constraint on the type. Specifically I want something like this: bool IsInList<T>(T value, params T[] args) { bool found = false; ...
2
votes
2answers
270 views

Static extension methods supporting member constraints

I need to implement a static extension method supporting member constraints on some basic primitive types like integers, floats, etc. Here's my code for signed integers: module MyOperators = let ...
2
votes
3answers
264 views

C#: How to find and create instances which fullfills multiple type constraints

Ok, maybe that title didn't make much sense, but here is the deal. Say I have a generic method with multiple type constraints, this this: public static void DoSomethingAwesome<T>(T thing) ...
1
vote
2answers
48 views

Can I create a generic object within a generic class where the class of the object to be created has constraints on the generic type parameter?

I have a generic interface, public interface ICalculator<in T> { void Calculate(T input); } a general calculator, public class GeneralCalculator<T> : ...
1
vote
2answers
81 views

Generic C# method taking where the enum value as a parameter [closed]

Possible Duplicate: Create Generic method constraining T to an Enum Given a generic method that only operates on enum values static void <T> method(T enum) where T ????? { // do ...
1
vote
4answers
124 views

C# Generic Type Constraints

I have never used generics before and was wondering how to constrain the Type to either Double[] or List<Double> (or if this is even the correct thing to do). I need to calculate the average of ...
1
vote
2answers
105 views

How to Setup a Constraint to Restrict Char Field to a Set of Values?

I am having a brain fart today. In SQL Server (currently using 2008), how do I setup a char field to only accept a specific series of chars (roughly eight case sensitive letters)? And I need to ...
1
vote
7answers
654 views

What does “where T : class, new()” mean?

Can you please explain me what where T : class, new() means in the following line of code? void Add<T>(T item) where T : class, new();
1
vote
1answer
176 views

Shorter way to constraint a function

I'm looking for a shorter way (if there is one) to constraint a function. E.g. let inline sincos (a:'T) = let y = sin a let x = cos a y, x For using this function, 'T will need to ...
1
vote
1answer
102 views

Constrain type parameter of a method to the interfaces implemented by another type

The intention of the following is to only allow the call IRegistration<Foo>.As<IFoo> if Foo implements IFoo: interface IRegistration<TImplementation> { void As<TContract>() ...
1
vote
2answers
125 views

Is there a technique to differentiate class behavior on generic types?

I'd like to do something like the following, but because T is essentially just a System.Object this won't work. I know T can be constrained by an interface, but that isn't an option. public class ...
1
vote
2answers
156 views

Attribute constraint on a generic type in .net?

in .net, if I have a generic class SomeClass<T>, is it possible to use the where keyword to require that T is a class with a certain attribute? something like: [SomeAttribute] class MyClass { ...
1
vote
2answers
554 views

How to make safe cast using generics in C#?

I want to implement a generic method on a generic class which would allow to cast safely, see example: public class Foo<T> : IEnumerable<T> { ... public IEnumerable<R> ...
1
vote
2answers
325 views

Extension methods for specific generic types

I'm attempting to create various extension method for a generic type bound to specific generic type parameters in F#, but the language does not seem to be allowing me: What I want to do is something ...
0
votes
3answers
115 views

Implementing lock in C++

Sorry that the question of this problem might be a bit vague. I'm trying to port this ObjectPool code from C# into C++ but seems there are some parts where I don't know how I should proceed. Codes are ...
0
votes
2answers
383 views

Mongoid embeds_many Type Constraints

I am trying to create an embeds_many relationship in mongoid and it appears to not be enforcing type constraints on the objects I add to the collection. Am I doing something incorrect here or is this ...
0
votes
3answers
237 views

Specifying constructor constraint for Generic Parameter

I have a collection of objects which I pass as parameter to create objects of another type (one for one). I am doing this in many places (basically converting from data objects to business objects). I ...
0
votes
3answers
271 views

When should or shouldn't I be using generic type constraints?

I've got a base class: public abstract class StuffBase { public abstract void DoSomething(); } And two derived classes public class Stuff1 : StuffBase { public void DoSomething() { ...