Description

Creates an iterator that returns elements grouped in pairs ### Example ``` anIterator = new DZipIterator([[1, 2], [3, 4]]); * anIterator.toList(); Returns [[1, 3], [2, 4]] ``` You can also chose a custom auto to zip the elements together, such as doing a sum by index: ### Example ``` anIterator = new DZipIterator([[1, 2], [3, 4]], auto (a, b) { return a + b; }); * anIterator.toList(); Returns [4, 6] ```

Properties

Methods

InheritedAbstractFinalStaticDatatypeHeader
JsonJson key()
this(Json[string]this(Json[string] listToZip, callable aCallable = null)
boolbool valid()
voidvoid __unserialize(Json[string] data)
Json[string]Json[string] __serialize()
voidvoid rewind()
voidvoid next()
JsonJson currentValue()