ixfx
    Preparing search index...

    Namespace Sync

    Functions

    asCallback

    Calls callback whenever the generator produces a value.

    chunks
    chunksOverlapping

    Yields chunks of the iterable it such that the end of a chunk is the start of the next chunk.

    concat
    dropWhile
    equals

    Returns true if items in two iterables are equal, as determined by the equality function.

    every
    fill
    filter
    find
    first

    Return first value from an iterable, or undefined if no values are generated

    flatten
    forEach

    Iterates over iterator (iterable/array), calling fn for each value. If fn returns false, iterator cancels.

    fromArray

    Yield values from array, one at a time. Use interval to add time between each item. The first item is yielded without delay.

    fromIterable
    last

    Returns last value from an iterable, or undefined if no values are generated

    map

    Maps an iterable of type V to type X.

    max
    min
    next
    reduce
    repeat
    slice
    some
    toArray

    Returns an array of values from an iterator.

    unique
    uniqueByValue
    until

    Loops over a generator until it finishes, calling callback. Useful if you don't care about the value generator produces, just the number of loops.

    yieldNumber

    Returns a function that yields a value from a generator.

    const spring = yieldNumber(Oscillators.spring
    
    zip

    Combine same-positioned items from several iterables