← effectMutableHashSet10Constructors3Models1Refinements1Elements2Mutations3ConstructorsemptyconstCreates an empty MutableHashSet.fromIterableconstCreates a MutableHashSet from an iterable collection of values.makeconstCreates a MutableHashSet from a variable number of values.ModelsMutableHashSetinterfaceA mutable hash set for storing unique values with Effect structural equality support.RefinementsisMutableHashSetconstChecks whether the specified value is a MutableHashSet, false otherwise.ElementshasconstChecks whether the MutableHashSet contains the specified value.sizeconstReturns the number of unique values in the MutableHashSet.MutationsaddconstAdds a value to the MutableHashSet, mutating the set in place.clearconstRemoves all values from the MutableHashSet, mutating the set in place.removeconstRemoves the specified value from the MutableHashSet, mutating the set in place.