Projects tagged ‘collections’


[91 total ]

15 Users
   

The Google Collections Library 1.0 is a set of new collection types, implementations and related goodness for Java 5 and higher, brought to you by Google. It is a natural extension of the Java ... [More] Collections Framework you already know and love. We are now posting release candidates for the final 1.0 release. Until the release is final, the API is still subject to change. (However, these changes should be very minimal at this point.) Download 1.0 Release Candidate 2 nowThe library consists of: New Collection types: Multimap, Multiset, BiMap and others High-performance immutable implementations of the standard collection types, for example ImmutableSet MapMaker, a builder for concurrent hash maps with many advanced features Ordering, which can only be described as a "Comparator on stero [Less]
Created about 1 year ago.

3 Users
 

Omeka is a web platform for publishing collections and exhibitions online. Designed for cultural institutions, enthusiasts, and educators, Omeka is easy to install and modify and facilitates community-building around collections and exhibits.
Created about 1 year ago.

1 Users
 

JUtil is a fully-parameterized (generic) collections library for Java. It was originally part of the FLEX compiler infrastructure.
Created 10 months ago.

1 Users

C5 is a generic collection library whose functionality, efficiency, and quality meets or exceeds what is available for similar contemporary programming platforms. Influenced by the collection ... [More] libraries for Java and Smalltalk and their published critiques, C5 contains functionality and a regularity of design that considerably exceeds that of the standard libraries for existing platforms. C5 is designed in keeping to a policy of designing toward interface rather than implementation. C5 works with Microsoft .NET 2.0 and later and Mono 1.2 and later. [Less]
Created about 1 year ago.

1 Users

Created 7 months ago.

1 Users

Pequeña aplicación para la gestion de colecciones de discos así como los prestamos.
Created 8 months ago.

1 Users

PackRat is a personal media collection manager for Android phones.
Created about 1 year ago.

0 Users

FilterQ alleviates the pain of using multiple if-else(..) checks when iterating over a collection to obtain a smaller view of that collection. FilterQ uses an EDSL for filtering iterable objects. ... [More] Usage Sample import static com.gotobject.filter.FilterQ.*; final Iterable a = Arrays.asList(1, 2, 3, 40, 20, 30, 100); final Iterable b = from(a).where(gt(20).and(lt(100))).skip(1); // result (30) What we are writing here to FilterQ is to give me all of the elements from a that are greater than 20 and less than 100, but please, when returning the filtered iterable, skip the first element of the filtered iterable. Another Usage Sample import static com.gotobject.filter.FilterQ.*; final Integer[] numbers = {5, 4, 1, 3, 9, 8, 6, 7, 2, 0}; final String[] strings = {"zero","one","two","three","four","five","six","seven","eight", "nine" }; final Iterable result = from(numbers).apply(indexed(strings)); System.out.println(asList(result)); // result: five, four, one, three, nine, eight, six, seven, two, zero This sample prints the name of each number in an integer array by indexing into a second array that contains the names. And another one... import static com.gotobject.filter.FilterQ.*; final Iterable n = from(range(1,1000)).where(numIsPrime()).select(not(eq(117))); System.out.println(n); This example will print ALL prime numbers found in the range (0...1000), but 117. [Less]
Created 7 months ago.

0 Users

Welcome to Power Collections, A Community Project to Develop the Best Public License type safe Collection Classes for .NET. Power Collections makes heavy use of .NET Generics. The goal of the project ... [More] is to provide generic collection classes that are not available in the .NET framework. Some of the collections included are the Deque, MultiDictionary, Bag, OrderedBag, OrderedDictionary, Set, OrderedSet, and OrderedMultiDictionary. This library was originally produced by Wintellect and is offered AS IS. It has been available on the Wintellect site for some time but we are placing it on Codeplex to encourage its growth and use. Power Collections is free for all to use within the bounds of the standard Eclipse End user license agreement. If you feel you would like to contribute, please feel free to contact one of the project administrators. [Less]
Created 11 months ago.

0 Users

Some collections that you may find missing in the standard .NET assemblies. If you're looking for sorted ObservableCollection or sorted collection, you should check this library. Implemented in C#.
Created about 1 month ago.