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:
- Interpolation: blending values, or arriving at a target over time
- Rx: Reactive values
- Data processing: Overview of data-processing
Importing
Section titled “Importing”// Whole moduleimport * as Data from "@ixfx/data"
// Single functionimport { resolve } from "@ixfx/data"
// One of several modulesimport { Data, Modulation, Flow } from "@ixfx"
// And within your HTML's <HEAD> </HEAD> block:<script type="importmap">{ "imports": { "@ixfx":"/ixfx/index.js", "@ixfx/": "/ixfx/" } }</script>
// Whole moduleimport * as Data from "@ixfx/data.js"
// Single functionimport { resolve } from "@ixfx/data.js"
// One of several modulesimport { Data, Modulation, Flow } from "@ixfx/bundle.js"
// Single module from the bundleimport { Data } from "https://unpkg.com/@ixfx/bundle"
// Single moduleimport * as Data from "https://unpkg.com/@ixfx/data/bundle"
// One of several modulesimport { Data, Modulation, Flow } from "https://unpkg.com/@ixfx/bundle"