map.size()
  • References/JavaScript/D3.js/Collection

map.size() Returns the number of entries in this map.

2025-01-10 15:47:30
map.set()
  • References/JavaScript/D3.js/Collection

map.set(key, value) Sets the value for the specified key string. If the map previously had

2025-01-10 15:47:30
set.clear()
  • References/JavaScript/D3.js/Collection

set.clear() Removes all values from this set.

2025-01-10 15:47:30
map.remove()
  • References/JavaScript/D3.js/Collection

map.remove(key) If the map has an entry for the specified key string, removes the entry and returns true. Otherwise

2025-01-10 15:47:30
map.each()
  • References/JavaScript/D3.js/Collection

map.each(function) Calls the specified function for each entry in this map, passing the entry’s value and key

2025-01-10 15:47:30
set.remove()
  • References/JavaScript/D3.js/Collection

set.remove(value) If the set contains the specified value string, removes it and returns true. Otherwise, this

2025-01-10 15:47:30
d3.values()
  • References/JavaScript/D3.js/Collection

d3.values(object) Returns an array containing the property values of the specified object (an associative array). The order

2025-01-10 15:47:30
set.empty()
  • References/JavaScript/D3.js/Collection

set.empty() Returns true if and only if this set has zero values.

2025-01-10 15:47:30
map.has()
  • References/JavaScript/D3.js/Collection

map.has(key) Returns true if and only if this map has an entry for the specified key string. Note: the value

2025-01-10 15:47:30
map.values()
  • References/JavaScript/D3.js/Collection

map.values() Returns an array of values for every entry in this map. The order of the returned values is arbitrary.

2025-01-10 15:47:30