Claudenw opened a new pull request #160: URL: https://github.com/apache/commons-collections/pull/160
This pull requests adds a generic `SimpleBloomFilter<T>`. The user provides a `Function<T,SimpleBuilder>` implementation. The class adds `bloomFilter.merge( T )` and `bloomFilter.contains( T )`. Additional changes were made to Hasher.Builder to use generics: `Hasher.Builder<H extends Hasher, B extends Builder>`. This allows the default methods in the interface to work correctly when a minimal specific implementation is provided. Also added additional `with()` methods to `Hasher.Builder<H extends Hasher, B extends Builder>` to accept primitives (int, long, double, float, short, char) as well as BigInteger and BigDecimal. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
