Platforms to show: All Mac Windows Linux Cross-Platform

VariantOrderedSetIteratorMBS class

Type Topic Plugin Version macOS Windows Linux iOS Targets
class Data Types MBS DataTypes Plugin 8.2 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
The iterator for the VariantOrderedSet class.
Example
// Create a map
dim m as new VariantOrderedSetMBS

m.insert(1.0) // double
m.insert("Hello") // string
m.insert(3) // integer

// get iterators pointing to first and after last element
dim i as VariantOrderedSetIteratorMBS = m.first
dim e as VariantOrderedSetIteratorMBS = m.last

// Show all keys and values
while i.isNotEqual(e)
MsgBox i.Key
i.MoveNext
wend
  • 5 methods
    • method isEqual(other as VariantOrderedSetIteratorMBS) as boolean
    • method isNotEqual(other as VariantOrderedSetIteratorMBS) as boolean
    • method Key as Variant
    • method MoveNext
    • method MovePrev

This class has no sub classes.

Some methods using this class:


The items on this page are in the following plugins: MBS DataTypes Plugin.


VariantHashSetMBS   -   VariantOrderedSetMBS


The biggest plugin in space...