GetEnumerator()

Namespace ›› System ›› MfEnumerableBase ›› Methods ››
Parent Previous Next

GetEnumerator()

OutputVar := instance.GetEnumerator()

GetEnumerator()

Gets an enumerator

Returns

Returns an enumerator that iterates through a collection.

Throws

Throws MfNotImplementedException if _NewEnum() Method has not been overridden in derived class.

Remarks

Returns an enumerator that iterates through a collection.

Example

MyLst := new MfList()

loop, 10
{
   MyLst.Add("MyItem-" . A_Index)
}
MyEnum := MyLst.GetEnumerator()

mfs := new MfString()
MaxIndex := MyLst.Count -1
While MyEnum.Next(i, v)
{
   mfs.Append(MfString.Format("Index: {0}, Value: '{1}'", i, v))
   if (i < MaxIndex)
   {
       mfs.AppendLine()
   }
}

MsgBox % mfs.Value

; alternatively we can do this
mfs := new MfString()
MaxIndex := MyLst.Count -1
for i, v in MyLst
{
   mfs.Append(MfString.Format("Index: {0}, Value: '{1}'", i, v))
   if (i < MaxIndex)
   {
       mfs.AppendLine()
   }
}

MsgBox % mfs.Value

; mfs.Value contains
/*
Index: 0, Value: 'MyItem-1'
Index: 1, Value: 'MyItem-2'
Index: 2, Value: 'MyItem-3'
Index: 3, Value: 'MyItem-4'
Index: 4, Value: 'MyItem-5'
Index: 5, Value: 'MyItem-6'
Index: 6, Value: 'MyItem-7'
Index: 7, Value: 'MyItem-8'
Index: 8, Value: 'MyItem-9'
Index: 9, Value: 'MyItem-10'
*/