Options
All
  • Public
  • Public/Protected
  • All
Menu

External module "ndarray/orders/docs/types/index.d"

Index

Functions

Functions

Export assignment orders

  • orders(): Array<string>
  • Returns a list of ndarray orders.

    Notes

    • The output array contains the following orders:

      • row-major: row-major (C-style) order.
      • column-major: column-major (Fortran-style) order.

    Returns Array < string >

    list of ndarray orders

    Example

    var list = orders();
    // returns [ 'row-major', 'column-major' ]