0
votes
7answers
88 views
Sort Map<String, Object> by keys with IgnoreCase?
Well, I tested TreeMap but it doesn't take in account IgnoreCase on string comparision. I need to order lexicographically and ignoring case. Is there any other way?
Thanks, that w …
1
vote
4answers
64 views
Defining an extension method on IEnumerable<T> where T is specific kind of type?
I want a method to only work on types which implement the /, +, -, * operators. Is there any "clean" way to do this?
0
votes
6answers
110 views
Remove even numbers from an ArrayList
I have to create a method which has an ArrayList; I need to remove even numbers from this ArrayList. I have written code for that but there is a logical error which I couldn't iden …
0
votes
3answers
53 views
Dependency Injection and Generic Collections
I'm going round in circles at the moment trying to get the pattern right for using Dependency Injection with a number of IEnumerables.
I have three types of object that I want to …
3
votes
2answers
111 views
Simple Java Map puzzle [closed]
What is the best implementation for this general-purpose library method?
public static <K, V> boolean containsEntry(
Map<K, V> map, K key, V value) {}
Criteria f …
0
votes
4answers
35 views
How can I create a javascript class and access an internal collection using and index/name lookup?
I currently have this:
function SystemCollection () {
this.systems = [];
this.getSystem = function (id) {
for(var s in this.systems) {
if(s.num == id)
r …
3
votes
8answers
134 views
Do any Java libraries provide a random access Queue implementation?
I'm implementing a sliding window over a stream of events, in Java.
So I want a data structure which allows me to do the following:
add to the end of the data structure when new …
1
vote
2answers
59 views
.NET collection that throws an exception when a duplicate is added
Is there a collection (apart from Dictionary) in the .NET framework (3.5) that throws an exception when a duplicate is added?
HashSet does not throw an exception here:
HashSet< …
3
votes
7answers
139 views
Arraylist in Csharp
i have created a class named employees to hold the employee information. the class looks as follows.
class Employee
{
private int employeeID;
private string firstName;
…
4
votes
9answers
188 views
Removing items from a collection in java while iterating over it
I want to be able to remove multiple elements from a set while I am iterating over it. Initially I hoped that iterators were smart enough for the naive solution below to work.
Set …
3
votes
6answers
91 views
How can I fire event before item is added to collection in C#?
I would like to do some processing before an item is added to a BindingList. I see there is an ListChanged event but this is fired after the item is added. The AddingNew event is …
4
votes
8answers
156 views
Java: Get first item from a collection
If I have a collection, such as Collection<String> strs, how can I get the first item out? I could just call an Iterator, take its first next(), then throw the Iterator away. …
1
vote
4answers
67 views
javascript function that returns two string values, how to do this neatly?
I need to store values that would look like this:
"somekey": "value1", "value2"
So I want to create a function that will take in "somekey", and it will return "value1", "value2". …
0
votes
1answer
26 views
Custom Collection extends List<T> Add method
I want to create a custom collection and add my own custom Add method.
Scenario:
Teacher.Students.Add(Student s)
I want to put LINQ methods to save the teacher/student relations …
0
votes
0answers
37 views
DataGridView rows show up but no data
I am trying to bind a collection (that inherits from BindingList) to a DataGridView. The grid headers show up fine and the I get the number of rows that I expect. However, the cel …
