3
votes
3answers
48 views
Is there a dictionary like collection that can use a property of its value as the key?
istead of using Dictionary I want some type of collection class that can use a property of the value as the key, is there something like this?
3
votes
6answers
146 views
Is List<List<String>> an instance of Collection<Collection<T>>?
I wrote this handy, generic function for converting a collection of collections into a single set:
public static <T> Set<T> makeSet(Collection<Collection<T>&g …
1
vote
9answers
103 views
When to use the various generic containers in Java
Hello
Does anyone know of any resources or books I can read to help me understand the various Java collection classes?
For example:When would one use a Collection<T> instead …
2
votes
4answers
93 views
Can LINQ use binary search when the collection is ordered?
Can I somehow "instruct" LINQ to use binary search when the collection that I'm trying to search is ordered. I'm using an ObservableCollection<T>, populated with ordered data …
0
votes
0answers
16 views
Binding to a Model that Contains a Collection/List
Hello,
I'm building a simple financial record-keeping application. The main window view model holds a list of Accounts. The view shows this list (in a ListView) along with a panel …
1
vote
3answers
63 views
Handling mutable collection keys in C#
Let's say I have a simple class Cat in C#, with a Name property of type string. Now I need a collection class for my cats, so I decide to wrap a Dictionary<string, Cat> in a …
0
votes
4answers
62 views
Java: upcasting Collection<T> to Collection<U super T>
I have a Collection<T>. I have a class TManager implementing an interface UManager which has a method getCollection() that needs to return a Collection<U> where U is an …
0
votes
4answers
58 views
Extend Collections Class VBA
I have created a sort function to allow a collection of instances of a custom object to be sorted based on one of the objects properties. Is it possible to extend the existing col …
2
votes
2answers
69 views
C# Sort list while also returning the original index positions?
Hi,
I'm interested in sorting a collection, but also returning an index which can be used to map to the original position in the collection (before the sort).
Let me give an exam …
30
votes
10answers
988 views
Is the Scala 2.8 collections library a case of “the longest suicide note in history” ?
First note the inflammatory subject title is a quotation made about the manifesto of a UK political party in the early 1980s. This question is subjective but it is a genuine questi …
1
vote
3answers
59 views
advantage of creating a temporary buffer when iterating over and modifying a collection in java
I am iterating over, and modifying a map (which is created from an existing group of enum objects) like the following:
public class Dispenser {
private Map<Ingredient, Integ …
5
votes
2answers
53 views
Is ReadOnlyCollection threadsafe if the underlying collection is not touched?
MSDN vaguely mentions:
A ReadOnlyCollection<(Of <(T>)>) can support multiple readers concurrently, as long as the collection is not modified. Even so, enumerating through …
0
votes
4answers
88 views
Are there any plans for Java to add generic collection covariance?
Today I was trying to write some code that looked like this:
public List<IObject> getObject(){
ArrayList<ConcreteObject> objects = new ArrayList<ConcreteObject> …
0
votes
5answers
104 views
A collection that represents a concatenation of two collections in Java
Is there a class that represents the concatenation of a collection with another collection? This class should be a Collection in itself, and should delegate all methods to the unde …
1
vote
2answers
58 views
Is there a non-unique-key sorted list generic collection in C#?
I'm a bit surprised by System.Collections.Generic.SortedList, in that
It requires me to use <key, value> instead of <value>(comparer)
It only allows on entry per valu …
