* Iterate through internal items. This method takes the same arguments that * `Array.prototype.forEach` takes. * * NOTE: The order of the mappings is NOT guaranteed.
(aCallback, aThisArg)
| 44 | * NOTE: The order of the mappings is NOT guaranteed. |
| 45 | */ |
| 46 | unsortedForEach(aCallback, aThisArg) { |
| 47 | this._array.forEach(aCallback, aThisArg); |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Add the given source mapping. |