Questions tagged [trove4j]

The Trove library provides high speed regular and primitive collections for Java.

The GNU Trove library has two objectives:

  1. Provide "free" (as in "free speech" and "free beer"), fast, lightweight implementations of the java.util Collections API. These implementations are designed to be pluggable replacements for their JDK equivalents.
  2. Provide primitive collections with similar APIs to the above. This gap in the JDK is often addressed by using the "wrapper" classes (java.lang.Integer, java.lang.Float, etc.) with Object-based collections. For most applications, however, collections which store primitives directly will require less space and yield significant performance gains.

Trove allows both server-side and client applications to work faster and use less memory.

47 questions
-1
votes
2 answers

How to use trove-3.0.3-src.jar file for a Java project

I want to use trove collections for my project but I was unable to use them by adding the jar file. https://bitbucket.org/robeden/trove/downloads Can someone tell me how to use trove collections in my project?
Cmen535
  • 25
  • 1
  • 3
  • 15
-2
votes
2 answers

Perform a collection of commands as fast as possible in Java

in my project I want to load a large amount of functions from a script into a collection to hold them and perform them later (probably many times) without reading the script again. I need the Access to the functions to be as fast as possible and…
Matze
  • 1
  • 2
1 2 3
4