Returns the histograph of an array as a Map. Makes no attempt to cope with deep equality; will fail for complex contents, as such.
Map
import { histograph } from './jssm.js';histograph( [0, 0, 1, 1, 2, 2, 1] ); // Map() Copy
import { histograph } from './jssm.js';histograph( [0, 0, 1, 1, 2, 2, 1] ); // Map()
Returns the histograph of an array as a
Map. Makes no attempt to cope with deep equality; will fail for complex contents, as such.