DoubleSet
Derives from RuntimeSet<T>.
Description
Represents a set of double values that can be shared and modified throughout the application.
Public Methods
Add(int)- Adds a signedintvalue to the set.Add(float)- Adds afloatvalue to the set.TryAdd(int) : bool- Attempts to add a signedintvalue to the set. Returns whether an item was added.TryAdd(float) : bool- Attempts to add afloatvalue to the set. Returns whether an item was added.Remove(int) : bool- Removes a signedintvalue from the set. Returns whether an item was removed.Remove(float) : bool- Removes afloatvalue from the set. Returns whether an item was removed.