1// This Source Code Form is subject to the terms of the Mozilla Public
2// License, v. 2.0. If a copy of the MPL was not distributed with this
3// file, You can obtain one at http://mozilla.org/MPL/2.0/.
4
5// Test of  Creating a JavaScript Iterator from a Java Iterable or Iterator
6// See http://developer.mozilla.org/en/docs/New_in_Rhino_1.7R1
7js> m = new java.util.LinkedHashMap()
8{}
9js> m.put("a",1); m.put("b",2); m
10{a=1.0, b=2.0}
11js> for (i in Iterator(m.values())) print(i)
121.0
132.0
14js> for (i in Iterator(m.values().iterator())) print(i)
151.0
162.0
17