Files
wren/test/core/map/remove.wren

19 lines
460 B
Plaintext
Raw Normal View History

2015-01-25 17:42:36 -08:00
var map = {
"one": 1,
"two": 2,
"three": 3
}
System.print(map.count) // expect: 3
System.print(map.remove("two")) // expect: 2
System.print(map.count) // expect: 2
System.print(map.remove("three")) // expect: 3
System.print(map.count) // expect: 1
2015-01-25 17:42:36 -08:00
// Remove an already removed entry.
System.print(map.remove("two")) // expect: null
System.print(map.count) // expect: 1
2015-01-25 17:42:36 -08:00
System.print(map.remove("one")) // expect: 1
System.print(map.count) // expect: 0