Crate ndata

Source
Expand description

githubcrates-iodocs-rs


This crate provides a a self-owned data structure with an internal heap and garbage collection.

NData supports objects, arrays, strings, integers, floats, booleans, byte buffers, and null. DataObject, DataArray, and DataBytes instances maintain reference counts. Garbage collection is performed manually by calling the type’s gc() function.

Modules§

Structs§

Functions§

  • Perform garbage collection. Instances will not be removed from the heap until NData::gc() is called.
  • Initialize global storage of data. Call only once at startup.
  • Mirror global storage of data from another process. Call only once at startup.
  • Prints the objects currently stored in the heap