name: Byte : public MScalar<byte, byte8>

synopsis:

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

#include <Byte.h>

Byte(byte arg = DEF_VALUE);
Byte(const Byte& arg);
quick start:

Byte val0;
val0 = 5;

Byte val1(3);
Byte val2;

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

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

The Byte class manages 8-bit unsigned integers
(byte8). It is derived from the MScalar class and inherits the commonly-used mathematical, logical, DSP and i/o methods from it. A Byte 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: