name: Ulong: public MScalar<ulong, uint32>

synopsis:

g++ [flags ...] file ... -l /isip/tools/lib/$ISIP_BINARY/lib_math_scalar.a

#include <Ulong.h>

Ulong(ulong arg = DEF_VALUE);
Ulong(const Ulong& arg);
quick start:

Ulong val0;
val0 = 10;

Ulong val1(5);
Ulong val2;

val2 = val0.exp10(2) + val1.factorial();
description:

The Ulong class manages 32-bit unsigned integers. It is derived from the
MScalar class and inherits the commonly-used mathematical, logical, DSP and i/o methods from it. A Ulong object can read itself from (or write itself to) a Sof file. It includes the memory management methods which use the MemoryManager class to allocate or delete memory from the heap.

dependencies:

public constants:

error codes:

protected data:

required public methods:

class-specific public methods:

private methods:

examples:

notes: