Options
All
  • Public
  • Public/Protected
  • All
Menu

External module "math/iter/special/erf/docs/types/index.d"

Index

Type aliases

Functions

Type aliases

Iterator

Iterator: Iter | IterableIterator

Functions

Export assignment iterErf

  • Returns an iterator which iteratively evaluates the error function.

    Notes

    • If an environment supports Symbol.iterator and a provided iterator is iterable, the returned iterator is iterable.

    Parameters

    Returns Iterator

    iterator

    Example

    var randu = require( `@stdlib/random/iter/randu` );
    
    var iter = iterErf( randu() );
    
    var r = iter.next().value;
    // returns <number>
    
    r = iter.next().value;
    // returns <number>
    
    r = iter.next().value;
    // returns <number>
    
    // ...