A collection that supports generic typing of its elements
If I have a Dictionary<String,...> is it possible to make methods like ContainsKey case-insensitive? This seemed related, …
c# collections generic-collectionsI wanted to add a KeyValuePair<T,U> to a Dictionary<T, U> and I couldn't. …
c# dictionary key-value generic-collectionsWhat does it mean? I used a list of list in ASP.NET MVC and sent them through ViewData of …
c# .net asp.net-mvc generics generic-collectionsI'm using Guava collections' transform functions, and finding myself making a lot of anonymous functions like this pseudocode: Function<…
java guava generic-collectionsHow do you find the index of an element in a Collection inherited class? public class MyCollection : Collection<MyClass&…
c# inheritance generic-collectionsIs there any way to limit the size of a generic collection? I have a Stack of WriteableBitmap which I …
c# generic-collectionsDoes anyone know why the following code does not compile? Neither add() nor addAll() works as expected. Removing the "? extends" …
java generics generic-list generic-collectionsWhat's the standard way to get a typed, readonly empty list in C#, or is there one? ETA: For those …
c# collections generic-collectionsIn my UT code, extract below, I see warning : Unchecked generic array creation for varargs parameter of type Matcher <? …
java generics generic-collections hamcrestI have a class with a collection of Wildcard Types that is a singleton, something like: public ObliviousClass{ private static …
java generics wildcard generic-collections