Another library of collection classes

  • Thread starter Thread starter boudino
  • Start date Start date
B

boudino

Hi Guys

I am looking for C# (.NET) library of collection classes. I need something similar to Smalltalk library in these aspects

1.) Adectave classes for OrderedCollection, SortedCollection, Set, Dictionary (I believe this can be covered by standard .NET classes)
2.) Operation for collection, selection, rejection; contains, include, detect. (as interface - I need all collection to be polymorfic on this messages)

Is there any class library, which meets my requirements? Fee or free, it does not matter

If there is none, I consider to develop my own. Will somebody join me

Regard
Boudino
 
Sorting alghoritms themselves are not so interersting. I need e.g. contains method mased on rule, not on value. Collect/select/detect are also welcome. Any more hints

Short explanation

- select returns all items matching a rul
- detect returns just first element matching a rul
- collect returns collection made from original collection using a transofrmatio

Maybe, I am missing something, but don't see such functionality in standard .net libraries

Bodino
 
Back
Top