TRF Language Model
|
#include <wb-mat.h>
Public Member Functions | |
Vec () | |
Vec (int size) | |
~Vec () | |
void | Reset (int size=0) |
void | Copy (VecShell< T > v) |
Public Member Functions inherited from wb::VecShell< T > | |
VecShell () | |
VecShell (T *p, int size) | |
void | Fill (T v) |
T * | GetBuf () const |
int | GetSize () const |
int | ByteSize () const |
VecShell< T > | GetSub (int nPos, int nLen) |
void | Reset (T *p, int size) |
T & | operator[] (int i) |
void | operator= (VecShell v) |
void | operator+= (VecShell v) |
void | operator-= (VecShell v) |
void | operator*= (T n) |
void | operator/= (T n) |
bool | operator== (VecShell v) |
T | Sum () |
Additional Inherited Members | |
Protected Attributes inherited from wb::VecShell< T > | |
T * | m_pBuf |
buf pointer More... | |
int | m_nSize |
buf size More... | |