| 210 | } |
| 211 | |
| 212 | bool FLArrayIterator_Next(FLArrayIterator* i) FLAPI { |
| 213 | try { |
| 214 | auto& iter = *(Array::iterator*)i; |
| 215 | ++iter; // throws if iterating past end |
| 216 | return (bool)iter; |
| 217 | } catchError(nullptr) |
| 218 | return false; |
| 219 | } |
| 220 | |
| 221 | static FLMutableArray _newMutableArray(FLArray a, FLCopyFlags flags) noexcept { |
| 222 | try { |