You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// 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")