Skip to content

Data

  • Arrays: working with arrays of data
  • Bipolar: working with values on -1…1 scale
  • Chains: data processing flows with generators
  • Comparing: comparing data
  • Frequency: count the occurrence of values
  • Interval: work with time
  • Maps: working with maps
  • Numbers: working with numbers
  • Pool: tracking a limited pool of resources
  • Process: construct simple flows of functions processing data
  • Resolve: resolve functions, iterators etc into concrete values

See also:

// Whole module
import * as Data from "@ixfx/data"
// Single function
import { resolve } from "@ixfx/data"
// One of several modules
import { Data, Modulation, Flow } from "@ixfx"
// And within your HTML's <HEAD> </HEAD> block:
<script type="importmap">{ "imports": { "@ixfx":"/ixfx/index.js", "@ixfx/": "/ixfx/" } }</script>