1
vote
4answers
90 views
How can I create a java list using the member variables of an existing list, without using a for loop?
I have a java list
List<myclass> myList = myClass.selectFromDB("where clause");
//myClass.selectFromDB returns a list of objects from DB
But I want a different list, specifically.
…
4
votes
9answers
171 views
If you aren’t supposed to return collections to callers, how should you return a collection of data to a caller?
I am writing a method that's intended to return a dictionary filled with configuration keys and values. The method that's building up this dictionary is doing so dynamically, so I need to return this …
0
votes
1answer
50 views
ASP.NET MVC: How to maintain TextBox State when your ViewModel is a Collection/List/IEnumerable
I am using ASP.NET MVC 2 Beta. I can create a wizard like workflow using Steven Sanderson's technique (in his book Pro ASP.NET MVC Framework) except using Session instead of hidden form fields to …
1
vote
2answers
35 views
Creating a “true” HashMap implementation with Object Equality in ActionScript 3
I've been spending some of my spare time working a set of collections for ActionScript 3 but I've hit a pretty serious roadblock thanks for the way ActionScript 3 handles equality checks inside …
1
vote
3answers
82 views
Collection as Collection of base type c# 2.0
I am aware of http://stackoverflow.com/questions/1174328/passing-a-generic-collection-of-objects-to-a-method-that-requires-a-collection-of
How do I do it in .Net 2.0 where I don't have .Cast ???
It …
0
votes
1answer
20 views
RoR: partials with resources
I have a problem, trying to render partials in ruby on rails with the short notation for resoures. Somehow, RoR displays simply nothing that has to do with the partial, but i get no errors as well. I …
0
votes
0answers
28 views
Silverlight 3 DataGrid Grouping - Detecting Group Header Click or Header Expand/Collapse
I am using a PagedCollectionView in Silverlight 3 to group items in a datagrid. I want to detect when the group headers are clicked but after 6 hours still cannot find any way to do this.
(So that …
13
votes
6answers
360 views
.NET: How to efficiently check for uniqueness in a List<string> of 50,000 items?
In some library code, I have a List that can contain 50,000 items or more.
Callers of the library can invoke methods that result in strings being added to the list. How do I efficiently check for …
1
vote
1answer
29 views
Splitting one DB association into several collections in Hibernate.
I am trying to model such situation - there is a cash transfer (I mean a car that carries money), that has required amounts of each currency, and also an actual amount for each currency. And it seems …
1
vote
2answers
43 views
C++/CLI generics, use T in array<> and other collections
Hi. I'm writing a generics class in C++/CLI (VS2008) to store and manage records of different kinds and I need collections to keep them before flusing them to DB/disk/etc. I was thinking in something …
2
votes
1answer
60 views
Is there a general concrete implementation of a KeyedCollection?
The System.Collections.ObjectModel.KeyedCollection class is a very useful alternative to System.Collections.Generic.Dictionary, especially when the key data is part of the object being stored or you …
0
votes
5answers
73 views
IEnumerable versus IList? [closed]
Possible Duplicate:
What’s the difference between IEnumerable and Array, IList and List?
what is the difference between an IEnumerable and a IList?
3
votes
5answers
139 views
Less defined generics in c#?
Is there a way to use a collection of a generic class, without supplying the underlying type ?
Let's explain :
Here is what I'd like to have :
class TimeSerie<TValue> {
enter code here
}
…
0
votes
2answers
55 views
Converting this method from IList to IQueryable
Is it possible to convert:
public IList Get()
{
return Session.CreateCriteria(typeof(T)).List();
}
to return IQueryable?
What is the difference between IList and …
3
votes
6answers
164 views
Clearest way to combine two lists into a map (Java)?
It would be nice to use for (String item: list), but it will only iterate through one list, and you'd need an explicit iterator for the other list. Or, you could use an explicit iterator for both.
…
