Skip to content

Data

  • Arrays: working with arrays of data
  • Comparing: comparing data
  • Bipolar: working with values on -1…1 scale
  • Chains: data processing flows with generators
  • Frequency: count the occurrence of values
  • 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
  • Rx: work with streams of data
  • Interpolation: blending values, or arriving at a target over time

Demos

Importing

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