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)

learn more… | top users | synonyms

0
votes
2answers
58 views

How do supertype generics in Java work?

I've been testing supertype generics with Java, but I've come to a roadblock. This is the sample code I was testing: import java.util.*; class GenericTests { public static void main( String[] ...
2
votes
1answer
29 views

Converting functions from type T to type U>:T

I have a question about creating a contravariant set represented by a function T=>Boolean that returns true if something is in the set, false otherwise. It looks like this: class BoolSet[-T](f: ...
15
votes
4answers
261 views

Why is Action<Action<T>> covariant?

This is something I'm having a hard time wrapping my head around. I understand that Action<T> is contravariant and is probably declared as such. internal delegate void Action<in T>(T t); ...
1
vote
0answers
21 views

Real World Use of the keyword In in .NET Framework

I have accidentally come across the keyword "in". I read an article on MSDN - in (Generic Modifier) (C# Reference) but still don't quite understand why it is useful. Can someone provide a real world ...
4
votes
1answer
79 views

Why is it safe not to check object-private or object-protected definitions for their variance position?

I have learned that Scala does not check object-private(private[this]) or object-protected(protected[this]) definitions for their variance position. Why is it safe not to check them? I have read some ...
2
votes
0answers
43 views

Why contravariance/covariance requires using generic in C#? [duplicate]

To use covariance/contravariance, I need to use generic with either interface or delegate. I assume that it has to do something with the language design problem. For example, this shows me no ...
-3
votes
1answer
42 views

Can someone explain why this operation is invalid? [closed]

I was reading up on covariance and contravariance today and I came across a post on stack exchange where Jon Skeet was explaining invariance at the class level. He used an example of fruit and why ...
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 ...
1
vote
1answer
104 views

Contravariantly converting Guava Predicates

I have a Predicate<Object> and need an equivalent Predicate<Animal>. Predicate<Animal> provideIsSentientPredicate() { // Won't compile -- cannot convert from ...
5
votes
2answers
149 views

Scala: Ordering contravariance

Is there any reason why Scala's Ordering trait is not contravariant? A motivating example follows. Suppose I want to perform an ordered insert. I may have a function with the signature def insert[A, ...
1
vote
3answers
73 views

Generic lists and co/contravariance

Let's say I have a generic List<ICalculation> which serves as a repository for all predefined calculations in my application... I have a generic interface called ICalculation<T, U> which ...
7
votes
6answers
134 views

Generic constraint for Action doesn't work as expected

I am having some trouble understanding why the following snippet does not give me an error public void SomeMethod<T>(T arg) where T : MyInterface { MyInterface e = arg; } But this one, ...
4
votes
2answers
201 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>> ...
3
votes
2answers
77 views

C# .Net Covariance - once more for old times sake?

So we have this: public interface IWidget { int Id { get; set; } } public class Widget : IWidget { public int Id { get; set; } } public class WidgetProcessor { public static void ...
2
votes
2answers
56 views

IComparable doesn't need to be contravariant?

In the code below i am targetting the .NET 2.0 Framework. I can pass a Programmer (derived) object to the Compare method which expects a Person (base class) But since a Programmer IS A Person ...
3
votes
3answers
93 views

Contravariance generic interface, and a wall I keep running into

I have a class Company that holds a list of different IFactory<IPart>; e.g. an EngineFactory. public class Company { private Dictionary<Type, IFactory<IPart>> _factories; ...
1
vote
3answers
93 views

in c#, how to determine the object's type when List<Object> is given?

my method look something like: Boolean actions(List<Object> input) { if (input.element is String) {...} else if (input.element is PSObject) {...} } I tried ...
11
votes
1answer
131 views

Understanding scala's _ vs Any/Nothing

If a class has a convariant type parameter such as Iterable[+A], is there any difference between declaring def foo(bar: Iterable[_]) and def foo(bar: Iterable[Any]) ? If a class has a ...
2
votes
1answer
81 views

Java - do covariance and contravariance exist? [duplicate]

I got a little bit confused the other day when it comes to generics and covariance/contravariance. I know C# specifies covariant/contravariant type parameters, but is there really a similar concept in ...
1
vote
1answer
96 views

How to define flatMap for a class with covariant/contravariant type parameters?

Let's say we have a class that has a covariant and a contravariant type parameter: sealed trait Pipe[-I,+O,+R] // case subclasses And we have monadic operations defined for instances of this class: ...
1
vote
1answer
108 views

Scala: contravariant type A occurs in covariant position in type >: A <: Any of type B

The compiler is telling me this can't be with a warning of: "contravariant type A occurs in covariant position in type >: A <: Any of type B." The warning is in the type parameter of the compose ...
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 ...
2
votes
2answers
59 views

Co/contravariant interfaces and assignability

I'm having some issues with, I think, variance, which I don't fully understand. I have a generic interface with two type parameters, like this: public interface IInvoker<TParameter, TResult> { ...
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 ...
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 ...
1
vote
1answer
58 views

java co-variance/contra-variance

Suppose I have: class Event {} class DoorBell extends Event {} class PhoneCall extends Event {} class EventGenerator { static Event getEvent() { if (today.isSunday()) return ...
27
votes
3answers
524 views

I can only cast a contravariant delegate with “as”

I'm trying to cast a contravariant delegate but for some reason I can only do it using the "as" operator. interface MyInterface { } delegate void MyFuncType<in InType>(InType input); class ...
2
votes
2answers
96 views

How to return a type parameter that is a subtype of an Array?

I don't understand why this code is impossible in Scala: def getColumns[T <: Array[_]] ():Array[(String,T)] ={ Array(Tuple2("test",Array(1.0,2.0,3.0))) } Compiler says: Expression ...
41
votes
4answers
549 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 ...
0
votes
1answer
51 views

Why are these contravariant argument types considered safe?

I just learned in my programming languages class that "contravariant argument types would actually be safe, but they have not been found useful and are hence not supported in practical languages." ...
9
votes
1answer
176 views

Scala - Co/Contra-Variance as applied to implicit parameter selection

I've got a trait like this: trait CanFold[-T, R] { def sum(acc: R, elem: T): R def zero: R } With a function that works with it like this: def sum[A, B](list: Traversable[A])(implicit adder: ...
1
vote
2answers
93 views

Covariance and contravariance, compile time errors

I've been reading up on covariance and contravariance - Wikipedia talks about the following: Suppose you have a class representing a person. A person can see the doctor, so this class might have ...
13
votes
1answer
194 views

Why covariance does not work with generic method

Assume I have interface and class: public interface ITree {} public class Tree : ITree {} As IEnumerable<T> is covariant, the code line below is compiled successfully: ...
3
votes
1answer
191 views

Shouldn't Covariance/Contravariance allow this in C# 4.5?

private Dictionary<Type, List<IDataTransferObject>> dataStore = new Dictionary<Type, List<IDataTransferObject>>(); public void Insert<T>(T dto) where T : ...
1
vote
3answers
94 views

Contravariance and method signature?

looking at this code delegate void StringAction (string s); class Test { static void Main() { StringAction sa = new StringAction (ActOnObject); sa ("hello"); } static void ActOnObject (object ...
2
votes
1answer
112 views

IEnumerable<T> equal ICollection<T> type check

I have written a small pub / sub system for our app, you subscribe to messages by implementing IHandle Lets say the subscriber implements IHandle<IEnumerable<MyType>> Then someone ...
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 ...
2
votes
1answer
124 views

Why are contravariant parameter types in Java not allowed for overriding?

When overriding a method of a superclass, Java allows the return type to be covariant. Why are contravariant parameter types in contrast not allowed when overriding methods?
0
votes
1answer
120 views

Is it Covariance and Contravariance related issue?

I have the following code: class Header<TItem> where TItem : IItem { IEnumerable<TItem> Item { get; set; } } class HeaderA : Header<ItemA> { public HeaderA(int a) {...} } class ...
0
votes
1answer
76 views

Any help on Covariance/Contravariance would be greatly appreciated C#

Guys Ihave the following code: public interface IParameter { ParameterName Name { get; set; } } public interface IParameter<T> : IParameter { T Value { get; set; } T LLimit { get; ...
1
vote
2answers
244 views

C# delegate contravariance with lambda expression

The second test method below does not compile (cannot convert lambda expression to target type D1). Does that mean that (non-generic) delegate contravariance does not work with lambda expressions? ...
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
1answer
48 views

Assignment compatibility, contravariance and implicit typecast

static void HandleDemoEvent(object sender, EventArgs e) { Console.WriteLine("bla-bla"); } static void Main(string[] args) { EventHandler handler; MouseEventHandler mouseHandler; ...
1
vote
1answer
52 views

Should Contravariance Allow the Compiler to Infer T=Circle?

Okay, I've been instructed that due to contravariance the compiler should be able to infer that T=Circle and therefore allow compilation. However, with compiler version 4.0.30319.1 I get the following ...
3
votes
1answer
77 views

Why does List<IShape>.Sort() call CompareTo(Object) rather than CompareTo(Shape)?

Earlier, I was provided a concrete example of contravariance in the generic IComparable<T> interface by Jon Skeet. This has, however, spawned yet another question. Why isn't the generic ...
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 ...
0
votes
1answer
153 views

Benefits of IComparable<T> as Contravariant?

I have very little experience with variance, but after having read quite a bit believe that I understand at least the basic concepts (i.e. variance describes the relationship between the relationship ...
3
votes
1answer
90 views

IsAssignableFrom in covariance and contravariance

How can I detect if type x is assignable from type y not only through inheritance hierarchy but also through covariance and contravariance?
2
votes
4answers
1k views

Variance in Expression<Func<T,bool>>

Just a quick and short one, this time. Func<T,TResult> is contravariant (EDIT : The Type Parameter T is). Now, I don't work with Func<T,TResult>, but rather with ...
1
vote
1answer
53 views

Storing disparate generics in a single enumerable

Given a generic attribute class: public class Attribute<T> { string Name { get; set; } T Value { get; set; } } Is there a way to have an object that contains an enumerable containing ...

1 2 3 4