Forum Discussion
You can get an ordered list with collect:
ArrayList<String> keys = [b:2, a:1].collect { key, value -> key }
assert keys == ["b", "a"]
assert keys != ["a", "b"]
You can get an ordered list with collect:
ArrayList<String> keys = [b:2, a:1].collect { key, value -> key }
assert keys == ["b", "a"]
assert keys != ["a", "b"]