AMXX-BG.INFO ndimarray.inc

ndimarray

Browse all symbols documented inside this include file.

Functions Raw source Download .inc Library page

Stocks

Name Description
NDimCreate Creates an N Dimensional Array
NDimDestroy Destroys the NDim Array, and resets the handle to 0 to prevent accidental usage after it is destroyed.
NDimFillArray Sets all items' data with that of a local buffer. The buffer size must match what the cellsize that the array was created with!
NDimFillCell Sets all of an NDim Array's single cell values. Use this only on array that were created with a cellsize of 1!
NDimFillString Sets all string values for an NDim Array. The stored string will be truncated if it is longer than the cellsize the array was created with!
NDimGetArray Returns data within an NDim Array. Make sure the output buffer matches the size the array was created with!
NDimGetCell Returns a single cell of data from an NDim Array.
NDimGetString Returns a string value from an NDim Array.
NDimSetArray Sets an item's data with that of a local buffer. The buffer size must match what the cellsize that the array was created with!
NDimSetCell Sets an NDim Array's single cell value. Use this only on array that were created with a cellsize of 1!
NDimSetString Sets a string value for an NDim Array. The stored string will be truncated if it is longer than the cellsize the array was created with!