npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@stdlib/wasm-base-arrays2ptrs

v0.1.1

Published

Convert a list of arrays to pointers (i.e., byte offsets) in WebAssembly module memory.

Readme

arrays2ptrs

NPM version Build Status Coverage Status

Convert a list of arrays to "pointers" (i.e., byte offsets) in WebAssembly module memory.

Installation

npm install @stdlib/wasm-base-arrays2ptrs

Usage

var arrays2ptrs = require( '@stdlib/wasm-base-arrays2ptrs' );

arrays2ptrs( ctx, arrays )

Converts a list of arrays to "pointers" (i.e., byte offsets) in WebAssembly module memory.

var defineProperty = require( '@stdlib/utils-define-property' );
var ArrayBuffer = require( '@stdlib/array-buffer' );
var DataView = require( '@stdlib/array-dataview' );

var buf = new ArrayBuffer( 64*1024 ); // 64KiB

function isView( arr ) {
    return ( arr.buffer === buf );
}

function realloc( nbytes ) {
    buf = new ArrayBuffer( nbytes );
}

function view() {
    return new DataView( buf );
}

var ctx = {
    'isView': isView,
    'realloc': realloc
};

defineProperty( ctx, 'view', {
    'configurable': false,
    'enumerable': true,
    'get': view
});

// ...

var xobj = {
    'dtype': 'generic',
    'wdtype': 'float64',
    'length': 2,
    'data': [ 1.0, 2.0 ],
    'stride': 1,
    'offset': 0
};
var yobj = {
    'dtype': 'generic',
    'wdtype': 'float64',
    'length': 2,
    'data': [ 3.0, 4.0 ],
    'stride': 1,
    'offset': 0
};

// ...

var ptrs = arrays2ptrs( ctx, [ xobj, yobj ] );
// returns [...]

Each element in the list of input arrays should have the following properties:

  • dtype: array data type.
  • wdtype: WebAssembly array data type.
  • length: number of indexed elements.
  • data: original array-like object.
  • stride: index increment.
  • offset: index offset.

In addition to each element's existing properties, each element of the returned array has the following additional properties:

  • BYTES_PER_ELEMENT: number of bytes per element.
  • ptr: byte offset.
  • nbytes: number of bytes consumed by indexed array elements as stored in module memory.
  • copy: boolean indicating whether an array had to be copied to module memory.

Notes

  • Beware that this function may reallocate module memory, resulting in ArrayBuffer detachment and the invalidation of any typed array views which were views of the previously allocated memory. Additionally, this function may write to module memory and does so without regard for any existing memory content. Users are thus encouraged to take suitable precautions (e.g., copying results out of module memory prior to subsequent invocation) in order to avoid unexpected results.
  • If an array's data is copied to module memory, the data is copied to a contiguous segment of module memory, and the respective array object in the returned array will have unit stride and an offset of zero.

Examples

var setReadOnlyAccessor = require( '@stdlib/utils-define-nonenumerable-read-only-accessor' );
var setReadOnly = require( '@stdlib/utils-define-nonenumerable-read-only-property' );
var ArrayBuffer = require( '@stdlib/array-buffer' );
var DataView = require( '@stdlib/array-dataview' );
var Float64Array = require( '@stdlib/array-float64' );
var dtype2wasm = require( '@stdlib/wasm-base-dtype2wasm' );
var arrays2ptrs = require( '@stdlib/wasm-base-arrays2ptrs' );

function Context() {
    this._buffer = new ArrayBuffer( 100 );
    return this;
}

setReadOnly( Context.prototype, 'isView', function isView( arr ) {
    return ( arr.buffer ) ? ( arr.buffer === this._buffer ) : false;
});

setReadOnly( Context.prototype, 'realloc', function realloc( nbytes ) {
    this._buffer = new ArrayBuffer( nbytes );
});

setReadOnlyAccessor( Context.prototype, 'view', function getter() {
    return new DataView( this._buffer );
});

// ...

var ctx = new Context();

// ...

var x = new Float64Array( 4 );
var y = new Float64Array( 4 );

// ...

var xobj = {
    'dtype': 'float64',
    'wdtype': dtype2wasm( 'float64' ),
    'length': x.length,
    'data': x,
    'stride': 1,
    'offset': 0
};

var yobj = {
    'dtype': 'float64',
    'wdtype': dtype2wasm( 'float64' ),
    'length': y.length,
    'data': y,
    'stride': 1,
    'offset': 0
};

var out = arrays2ptrs( ctx, [ xobj, yobj ] );
// returns [...]

console.log( out );

Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.

Community

Chat


License

See LICENSE.

Copyright

Copyright © 2016-2026. The Stdlib Authors.