Legal Notice, Privacy Policy

Impressum, Datenschutzerklärung

Cerberus X Documentation

Class FloatSet

FloatSet is a convenience class for managing sets of floats. More...

Declarations

Extends
Set : <Float> A set is a container style object that provides a mechanism for keeping track of a number of objects.
Constructors
New ()
Inherited Methods
Clear : Int () Removes all items from the set.
Contains : Bool ( value:T ) Return True if the specified value is contained in the set, else False.
Count : Int () Counts and returns the number of objects in the set.
Insert : Int ( value:T ) Inserts value into the set.
IsEmpty : Bool () Returns True if the set is empty, ie: contains no items, else False.
ObjectEnumerator : Object () Returns an enumerator object that allows sets to be used with For Eachin loops.
Remove : Int ( value:T ) Removes value from the set.

Detailed Discussion

FloatSet is a convenience class for managing sets of floats.


Constructors Documentation

Method New ()