Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 385 Bytes

README.md

File metadata and controls

18 lines (11 loc) · 385 Bytes

Bloom filter

A simple Bloom filter implementation in swift.

Usage

// Setup a instance of the filter
let filter = BloomFilter<String>()

// Add an element to the filter
filter.addElement("foo")

// Test if an element is present in the filter
subject.contains("bar")

Contact

Jonathan