name: Ushort: public MScalar<ushort, uint16>

synopsis:

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

#include <Ushort.h>

Ushort(ushort arg = DEF_VALUE);
Ushort(const Ushort& arg);
quick start:

Ushort val0;
val0 = 5;

Ushort val1(3);
Ushort val2;

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

Ushort val3;
val3.rand(1, 100);
description:

The Ushort class manages 16-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 Ushort 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.

dependencies:

public constants:

error codes:

protected data:

required public methods:

class-specific public methods:

private methods:

examples:

notes: