Within the type system of a programming language, covariance and contravariance refers to the ordering of types from narrower to wider and their interchangeability or equivalence in certain situations (such as parameters, generics, and return types)
62
votes
4answers
22k 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 ...
42
votes
3answers
11k 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 ...
33
votes
3answers
3k views
Difference between Covariance & Contra-variance
I am having trouble understanding the difference between covariance and contravariance.
24
votes
5answers
3k 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 ...
11
votes
5answers
2k 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 ...
16
votes
4answers
581 views
How to find the minimum covariant type for best fit between two types?
There's IsAssignableFrom method returns a boolean value indicates if one type is assignable from another type.
How can we not only test if they are assignable from or to each other, but also know ...
5
votes
3answers
1k views
Casting List<T> - covariance/contravariance problem
Given the following types:
public interface IMyClass { }
public class MyClass : IMyClass { }
I wonder how can I convert a List<MyClass> to a List<IMyClass>? I am not completely clear on ...
61
votes
5answers
2k views
Why covariance and contravariance do not support value type
IEnumerable<T> is co-variant but it does not support value type, just only reference type. The below simple code is compiled successfully:
IEnumerable<string> strList = new ...
18
votes
4answers
2k 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
Generics : List<? extends Animal> is same as List<Animal>?
I am just trying to understand the extends keyword in Java Generics.
List<? extends Animal> means we can stuff any object in the List which IS A Animal
then won't the following also mean the ...
16
votes
3answers
2k 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 ...
13
votes
1answer
2k 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 ...
6
votes
3answers
791 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 ...
1
vote
2answers
811 views
How to make a generic class with inheritance?
How can I make the following code work? I don't think I quite understand C# generics. Perhaps, someone can point me in the right direction.
public abstract class A
{
}
public class ...
4
votes
2answers
200 views
How to make generic class that contains a Set of only its own type or subtypes as Children?
abstract class Animal { }
class Mammal : Animal { }
class Dog : Mammal { }
class Reptile : Animal { }
class AnimalWrapper<T> where T : Animal
{
public ISet<AnimalWrapper<T>> ...
10
votes
2answers
1k 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.
10
votes
3answers
1k 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 ...
1
vote
3answers
2k views
Covariance vs. contravariance
What are the concepts of covariance and contravariance?
Given 2 classes, Animal and Elephant (which inherits from Animal), my understanding is that you get runtime errors in .NET if you try and put ...
10
votes
4answers
630 views
How to find the best fit of common type between two types?
Here're two extension methods for use
public static Type FindInterfaceWith(this Type type1, Type type2) {
// returns most suitable common implemented interface
}
public static Type ...
5
votes
3answers
277 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 ...
4
votes
5answers
867 views
Covariance and Contravariance on the same type argument
The C# spec states that an argument type cannot be both covariant and contravariant at the same time.
This is apparent when creating a covariant or contravariant interface you decorate your type ...
41
votes
4answers
548 views
No warning or error (or runtime failure) when contravariance leads to ambiguity
First, remember that a .NET String is both IConvertible and ICloneable.
Now, consider the following quite simple code:
//contravariance "in"
interface ICanEat<in T> where T : class
{
void ...
14
votes
5answers
2k 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 ...
29
votes
2answers
1k views
Covariance / Contravariance in Haskell?
I know what covariance and contravariance of types are. My question is why haven't I encountered discussion of these concepts yet in my study of Haskell (as opposed to, say, Scala)?
It seems there is ...
15
votes
5answers
2k 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 ...
8
votes
1answer
446 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 ...
5
votes
3answers
535 views
ref and out parameters in C# and cannot be marked as variant
What does the statement mean?
From here
ref and out parameters in C# and
cannot be marked as variant.
1) Does it mean that the following can not be done.
public class SomeClass<R, A>: ...
6
votes
1answer
109 views
MonoTouch and supporting variant generic interfaces
The below example compiles fine in regular Mono 2.10.9:
namespace covarianttest
{
public interface ITest<out T> : IEnumerable<T>
{
}
}
However when I attempt compile it ...
8
votes
3answers
278 views
Variance rules in C#
The Exact rules for variance validity are a bit vague and not specific. I'm going to list the rules for what makes a type valid-covariantly, and attach some queries and personal annotations to each of ...
7
votes
3answers
2k 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 ...
5
votes
3answers
545 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 ...
4
votes
3answers
206 views
How is the datatype of type parameter decided in covariance and contravariance?
I was reading the book Java Generics and Collections By Maurice Naftalin, Philip Wadler, and within the first two chapters I ended up in having my head messed up with doubts. I was not able to figure ...
3
votes
1answer
167 views
Valid type casting of both covariant and contravariant class at runtime in Scala
I wrote a class implementing the command design pattern:
class MyCommand[-T, +R](val name: String, val execute: T => R)
, prepared two command and stored it in a MutableList:
val commands = new ...
2
votes
2answers
363 views
Delegate Variance in c++/cli
I am in the process of converting working C# code into C++/CLI, and I'm having trouble understanding why it does not compile.
The error I received:
void ...
6
votes
3answers
1k 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
17answers
942 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 ...
4
votes
1answer
95 views
Cannot implicitly convert MyType<Foo> to MyType<IFoo>
I am not sure if this is a Covariance and Contravariance issue but I cannot get this working. Here is the code:
public interface IDto { }
public class PaginatedDto<TDto> where TDto : IDto {
...
4
votes
2answers
451 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
{
...
4
votes
2answers
710 views
Supporting both covariance and contravariance for a single type parameter [duplicate]
Possible Duplicate:
Covariance and Contravariance on the same type argument
You can declare a generic type parameter as covariant by using the out keyword:
interface ICovariant<out ...
2
votes
3answers
135 views
Confusion with collections of nested generics
Please help me understand why add1() and add4() report errors and why add2() and add3() don't. Specifically, please show examples of undesired consequences if the compiler allowed each of these to ...
2
votes
1answer
617 views
How to fix this error? Invalid variance: The type parameter 'T' must be invariantly valid on
I'm having the below error message at compile time:
"Invalid variance: The type parameter 'T' must be invariantly valid on 'ConsoleApplication1.IRepository.GetAll()'. 'T' is covariant."
and the ...
2
votes
6answers
4k views
Overriding Java generic methods
I wanted to create an interface for copying an object to a destination object of the same class. The simple way is to use casting:
import org.junit.Test;
import ...
1
vote
3answers
839 views
How to implement template class covariance in C++?
Is it possible to implement a class template in such a way that one object could be casted to another if their template arguments are related? Here is an exaple to show the idea (of course it will not ...

