Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

41
votes
4answers
15k views

How is Generic Covariance & Contra-variance Implemented in C# 4.0?

I didn't attend PDC 2008, but I heard some news that C# 4.0 is announced to support Generic covariance and contra-variance. That is, List<string> can be assigned to List<object>. How could ...
19
votes
5answers
2k views

C# : Is Variance (Covariance / Contravariance) another word for Polymorphism?

I am trying to figure out the exact meaning of the words Covariance and Contravariance from several articles online and questions on StackOverflow, and from what I can understand, it's only another ...
17
votes
4answers
279 views

Does I<D> re-implement I<B> if I<D> is convertible to I<B> by variance conversion?

interface ICloneable<out T> { T Clone(); } class Base : ICloneable<Base> { public Base Clone() { return new Base(); } } class Derived : Base, ICloneable<Derived> { new ...
15
votes
2answers
780 views

Example of contravariance

I am thinking of the following example to illustrate why contravariance is useful. Let's consider a GUI framework with Widgets, Events, and Event Listeners. abstract class Event; class KeyEvent ...
15
votes
6answers
1k views

Difference between Covariance & Contra-variance

I am having trouble understanding the difference between covariance and contravariance. My understanding is one supports out, as in "action" with no return type, which is casting to. The other ...
14
votes
3answers
1k views

Generic Variance in C# 4.0

Generic Variance in C# 4.0 has been implemented in such a way that it's possible to write the following without an exception (which is what would happen in C# 3.0): List<int> intList = new ...
14
votes
4answers
1k views

Contravariance explained

First of, I have read many explanations on SO and blogs about covariance and contravariance and a big thanks goes out to Eric Lippert for producing such a great series on Covariance and ...
14
votes
3answers
5k views

Scala covariance / contravariance question

Following on from this question, can someone explain the following in Scala: class Slot[+T] (var some: T) { // DOES NOT COMPILE // "COVARIANT parameter in CONTRAVARIANT position" } I ...
13
votes
5answers
1k views

Why do we need new keywords for Covariance and Contravariance in C#?

Can someone explain why there is the need to add an out or in parameter to indicate that a generic type is Co or Contra variant in C# 4.0? I've been trying to understand why this is important and why ...
9
votes
2answers
842 views

Real-world examples of co- and contravariance in Scala

I know about using co- and contravariance in the standard library (e.g. collections and trait Function) I wonder how co- and contravariance are used in design of "real world" business applications.
9
votes
5answers
545 views

Simple examples of co and contravariance

Could someone provide me simple C# examples of convariance, contravariance, invariance and contra-invariance (if such thing exists). All samples I've seen so far was just casting some object into ...
9
votes
3answers
386 views

Why generic interfaces are not co/contravariant by default?

For example IEnumerable<T> interface: public interface IEnumerable<out T> : IEnumerable { IEnumerator<T> GetEnumerator(); } In this interface the generic type is used only as ...
9
votes
3answers
276 views

Why is C# 4.0's covariance/contravariance limited to parameterized interface and delegate types?

Is this a limitation of the CLR or are there compatibility concerns with existing code? Is this related to the messed up variance of delegate combining in C# 4.0? Edit: Would it be possible to have ...
9
votes
5answers
1k views

Understanding Covariance and Contravariance in C# 4.0

I watched a video about it on Channel 9 but I didn't really understand it much. Can someone please give me a simple example about these that's easy to understand? After that maybe how it would be ...
9
votes
5answers
611 views

What are the benefits of covariance and contravariance?

C# 4.0 is going to support covariance and contravariance. But I don't clearly understand the benefits of this new feature. Can you explain me (clearly) why we need it?
8
votes
1answer
331 views

covariance and contravariance considerations when designing

Inspired by Real-world examples of co- and contravariance in Scala I thought a better question would be: When designing a library, are there a specific set of questions you should ask yourself when ...
8
votes
2answers
228 views

I really don't understand this co/contravariance thing… I cannot have both generic get and set methods?

I think I'll explain my problems with some examples.. interface IModel {} class MyModel : IModel {} interface IRepo<T> where T: IModel { } class Repo : IRepo<MyModel> { } // Cannot ...
8
votes
3answers
342 views

How would contravariance be used in Java generics?

In Java, covariance allows the API designer to specify that an instance may be generalised as a certain type or any of that type's subtypes. For example: List<? extends Shape> shapes = new ...
8
votes
2answers
254 views

could someone explain the connection between type covariance/contravariance and category theory?

I am just starting to read about category theory, and would very much appreciate it if someone could explain the connection between CS contravariance/covariance and category theory. What would some ...
7
votes
1answer
80 views

How to add an apple delegate to a list of fruit delegates?

I have a sample program with a base Fruit class and a derived Apple class. class Testy { public delegate void FruitDelegate<T>(T o) where T : Fruit; private ...
7
votes
2answers
190 views

Generic Covariance and contravariance

Consider the code snippet. IList<String> obj=new List<string>(); IEnumerable<Object> obj1 = obj; But if i write ICollection<Object> obj2 = obj; it throws me a compile time ...
7
votes
2answers
139 views

Contravariant Delegates Value Types

Can anyone shed light on why contravariance does not work with C# value types? The below does not work private delegate Asset AssetDelegate(int m); internal string DoMe() { AssetDelegate aw = ...
7
votes
2answers
369 views

Covariance and Contravariance inference in C# 4.0

When we define our interfaces in C# 4.0, we are allowed to mark each of the generic parameters as in or out. If we try to set a generic parameter as out and that'd lead to a problem, the compiler ...
6
votes
2answers
62 views

Does covariance/contravariance apply to implicitly convertable types that don't implement a common interface?

I'm currently reading up on Covariance and Contravariance in C#. All examples have details of objects being convertable and differ because of the accuracy from the Interface implementation e.g. ...
6
votes
2answers
204 views

C# 3.5 Covariance issue?

I've been hearing/reading a lot about covariance issues in C# and I wanted to pose a few questions & scenarios so hopefully I can clear up my confusion on the matter. Throughout these examples, ...
6
votes
3answers
127 views

Invariant inheritance problem

I'm trying to implement a strategy pattern to allow me to allow me to apply some "benefit" to an "account". In the code below, I can't add my implementation of an interface to a dictionary expecting ...
6
votes
3answers
810 views

General 'map' function for Scala tuples?

I would like to map the elements of a Scala tuple (or triple, ...) using a single function returning type R. The result should be a tuple (or triple, ...) with elements of type R. OK, if the ...
6
votes
1answer
97 views

Is there a way to determine the Variance of an Interface / Delegate in C# 4.0?

So now that we have generic Covariance and Contravariance on interfaces and delegates in C#, I was just curious if given a Type, you can figure out the covariance/contravariance of its generic ...
6
votes
3answers
556 views

Why does C# (4.0) not allow co- and contravariance in generic class types?

What is the real reason for that limitation? Is it just work that had to be done? Is it conceptually hard? Is it impossible? Sure, one couldn't use the type parameters in fields, because they are ...
6
votes
3answers
836 views

IList using covariance and contravariance in c#, is this possible?

would this be possible? (I don't have vs. 2010, so I can't try it myself, sorry) public interface IComplexList<out TOutput, in TInput> where TOutput : TInput { public ...
6
votes
3answers
387 views

Type variance in .NET Framework 4.0

IEnumerable<T>, IComparable<T> and a few more are now type-variant. IList<T>, ICollection<T> and many others aren't. Why?
6
votes
17answers
883 views

Why doesn't inheritance work the way I think it should work?

I'm having some inheritance issues as I've got a group of inter-related abstract classes that need to all be overridden together to create a client implementation. Ideally I would like to do ...
5
votes
3answers
214 views

Expression.Convert doesn't throw InvalidOperationException for invariant value type parameters?

Expression.Convert generally throws in InvalidOperationException when "No conversion operator is defined between expression.Type and type." The return type parameter of Func<> is covariant for ...
5
votes
4answers
295 views

covariance/contravariance in C#

I have a book that explains contravariance/covariance as follows : a delegate can have more specific parameter types than its method target. This is called contravariance the return type of ...
5
votes
1answer
93 views

.NET: Covariance and Contravariance [closed]

Possible Duplicate: Difference between Covariance & Contra-variance I'm trying to understand what covariance and contravariance is, as well as the difference between the two. I have ...
5
votes
3answers
187 views

Why doesn't delegate contravariance work with value types?

This snippet is not compiled in LINQPad. void Main() { (new[]{0,1,2,3}).Where(IsNull).Dump(); } static bool IsNull(object arg) { return arg == null; } I'd like to provide you with the ...
5
votes
2answers
235 views

Scala: issues using functions as first class objects

I need to have a collection of generic functions, but I can't get it done in the way I like. I created a List[(Any)=>Unit] but as soon as I try to insert a function, for example a ...
5
votes
3answers
630 views

Understanding Covariant and Contravariant interfaces in C#

I've come across these in a textbook I am reading on C#, but I am having difficulty understanding them, probably due to lack of context. Is there a good concise explanation of what they are and what ...
5
votes
2answers
420 views

Does C# 4's covariance support nesting of generics?

I don't understand why 'x' below converts, but 'y' and 'z' do not. var list = new List<List<int>>(); IEnumerable<List<int>> x = list; List<IEnumerable<int>> y = ...
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 ...
4
votes
3answers
704 views

T must be contravariantly valid

What is wrong with this? interface IRepository<out T> where T : IBusinessEntity { IQueryable<T> GetAll(); void Save(T t); void Delete(T t); } It says: Invalid variance: The ...
4
votes
2answers
362 views

Contra- and Co-variance - CLR via C#

In the CLR via c# third edition there is an example that I cant seem to make sense of: Invariant Meaning that that generic type parameter cannot be changed. I have shown only invariant generic ...
4
votes
1answer
75 views

Detect variance on generic type parameters of interfaces

Is there a way to reflect on an interface to detect variance on its generic type parameters and return types? In other words, can I use reflection to differentiate between the two interfaces: ...
4
votes
2answers
304 views

Why are ref parameters not contravariant?

This works: EndPoint endPoint = new IPEndPoint(_address, _port); _socket.ReceiveFrom(buffer, 0, 1024, SocketFlags.None, ref endPoint); But this does not: IPEndPoint endPoint = new ...
4
votes
2answers
3k views

Generic wildcards in variable declarations in Scala

In Java I might do this: class MyClass { private List<? extends MyInterface> list; public void setList(List<MyImpl> l) { list = l; } } ...assuming that (MyImpl implements ...
3
votes
2answers
127 views

What does <in TFrom, out TTo> mean?

Resharper has suggested to change from interface IModelMapper<TFrom, TTo> { TTo Map(TFrom input); } into interface IModelMapper<in TFrom, out TTo> So I investigate a little and ...
3
votes
2answers
152 views

Override contra-variance workaround needed

I'm having difficulty finding the (what I'm sure is a very common) design pattern to work around the following problem. Consider this piece of code: class AA {}; class BB : public AA {}; class A { ...
3
votes
2answers
108 views

Covariance and contravariance for wildcarded types

Can you please explain why it is possible to do: import java.util.ArrayList; import java.util.List; public class Covariance { class A { } class B extends A { } class C extends ...
3
votes
2answers
198 views

Covariance/Contravariance Conundrum when using generic interface constraints

public interface IShape{} public class Rectangle : IShape{} public class Base{} public class Derived : Base{} public interface IFoo<out T, in U> where T : IShape ...
3
votes
2answers
81 views

How does contravariance make sense, linguistically, as it relates to delegates?

From Wikipedia: covariant: converting from wider (double) to narrower (float). contravariant: converting from narrower (float) to wider (double). In .NET, a delegate has covariance because it allows ...

1 2 3