SNAP Library 2.4, User Reference  2015-05-11 19:40:56
SNAP, a general purpose, high performance system for analysis and manipulation of large networks
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
PVec< TVal > Class Template Reference

#include <ds.h>

Public Member Functions

 PVec ()
 
 PVec (const PVec< TVal > &Vec)
 
 PVec (const int &MxVals, const int &Vals)
 
 PVec (const TVec< TVal > &_V)
 
 PVec (TSIn &SIn)
 
void Save (TSOut &SOut) const
 
PVec< TVal > & operator= (const PVec< TVal > &Vec)
 
bool operator== (const PVec< TVal > &Vec) const
 
bool operator< (const PVec< TVal > &Vec) const
 
TVal & operator[] (const int &ValN) const
 
bool Empty () const
 
int Len () const
 
TVal GetVal (const int &ValN) const
 
int Add (const TVal &Val)
 

Static Public Member Functions

static TPt< PVec< TVal > > New ()
 
static TPt< PVec< TVal > > New (const int &MxVals, const int &Vals)
 
static TPt< PVec< TVal > > New (const TVec< TVal > &V)
 
static TPt< PVec< TVal > > Load (TSIn &SIn)
 

Public Attributes

TVec< TVal > V
 

Private Attributes

TCRef CRef
 

Friends

class TPt< PVec< TVal > >
 

Detailed Description

template<class TVal>
class PVec< TVal >

Definition at line 2062 of file ds.h.

Constructor & Destructor Documentation

template<class TVal>
PVec< TVal >::PVec ( )
inline

Definition at line 2068 of file ds.h.

2068 : V(){}
TVec< TVal > V
Definition: ds.h:2066
template<class TVal>
PVec< TVal >::PVec ( const PVec< TVal > &  Vec)
inline

Definition at line 2069 of file ds.h.

2069 : V(Vec.V){}
TVec< TVal > V
Definition: ds.h:2066
template<class TVal>
PVec< TVal >::PVec ( const int &  MxVals,
const int &  Vals 
)
inline

Definition at line 2072 of file ds.h.

2072 : V(MxVals, Vals){}
TVec< TVal > V
Definition: ds.h:2066
template<class TVal>
PVec< TVal >::PVec ( const TVec< TVal > &  _V)
inline

Definition at line 2075 of file ds.h.

2075 : V(_V){}
TVec< TVal > V
Definition: ds.h:2066
template<class TVal>
PVec< TVal >::PVec ( TSIn SIn)
inlineexplicit

Definition at line 2078 of file ds.h.

2078 : V(SIn){}
TVec< TVal > V
Definition: ds.h:2066

Member Function Documentation

template<class TVal>
int PVec< TVal >::Add ( const TVal &  Val)
inline

Definition at line 2092 of file ds.h.

2092 {return V.Add(Val);}
TVec< TVal > V
Definition: ds.h:2066
TSizeTy Add()
Adds a new element at the end of the vector, after its current last element.
Definition: ds.h:559
template<class TVal>
bool PVec< TVal >::Empty ( ) const
inline

Definition at line 2088 of file ds.h.

2088 {return V.Empty();}
TVec< TVal > V
Definition: ds.h:2066
bool Empty() const
Tests whether the vector is empty.
Definition: ds.h:530
template<class TVal>
TVal PVec< TVal >::GetVal ( const int &  ValN) const
inline

Definition at line 2090 of file ds.h.

2090 {return V[ValN];}
TVec< TVal > V
Definition: ds.h:2066
template<class TVal>
int PVec< TVal >::Len ( ) const
inline

Definition at line 2089 of file ds.h.

2089 {return V.Len();}
TVec< TVal > V
Definition: ds.h:2066
TSizeTy Len() const
Returns the number of elements in the vector.
Definition: ds.h:535
template<class TVal>
static TPt<PVec<TVal> > PVec< TVal >::Load ( TSIn SIn)
inlinestatic

Definition at line 2079 of file ds.h.

2079 {return new PVec<TVal>(SIn);}
Definition: ds.h:2062
template<class TVal>
static TPt<PVec<TVal> > PVec< TVal >::New ( )
inlinestatic

Definition at line 2070 of file ds.h.

2070  {
2071  return new PVec<TVal>();}
Definition: ds.h:2062
template<class TVal>
static TPt<PVec<TVal> > PVec< TVal >::New ( const int &  MxVals,
const int &  Vals 
)
inlinestatic

Definition at line 2073 of file ds.h.

2073  {
2074  return new PVec<TVal>(MxVals, Vals);}
Definition: ds.h:2062
template<class TVal>
static TPt<PVec<TVal> > PVec< TVal >::New ( const TVec< TVal > &  V)
inlinestatic

Definition at line 2076 of file ds.h.

2076  {
2077  return new PVec<TVal>(V);}
TVec< TVal > V
Definition: ds.h:2066
Definition: ds.h:2062
template<class TVal>
bool PVec< TVal >::operator< ( const PVec< TVal > &  Vec) const
inline

Definition at line 2085 of file ds.h.

2085 {return V<Vec.V;}
TVec< TVal > V
Definition: ds.h:2066
template<class TVal>
PVec<TVal>& PVec< TVal >::operator= ( const PVec< TVal > &  Vec)
inline

Definition at line 2082 of file ds.h.

2082  {
2083  if (this!=&Vec){V=Vec.V;} return *this;}
TVec< TVal > V
Definition: ds.h:2066
template<class TVal>
bool PVec< TVal >::operator== ( const PVec< TVal > &  Vec) const
inline

Definition at line 2084 of file ds.h.

2084 {return V==Vec.V;}
TVec< TVal > V
Definition: ds.h:2066
template<class TVal>
TVal& PVec< TVal >::operator[] ( const int &  ValN) const
inline

Definition at line 2086 of file ds.h.

2086 {return V[ValN];}
TVec< TVal > V
Definition: ds.h:2066
template<class TVal>
void PVec< TVal >::Save ( TSOut SOut) const
inline

Definition at line 2080 of file ds.h.

2080 {V.Save(SOut);}
TVec< TVal > V
Definition: ds.h:2066
void Save(TSOut &SOut) const
Definition: ds.h:885

Friends And Related Function Documentation

template<class TVal>
friend class TPt< PVec< TVal > >
friend

Definition at line 2094 of file ds.h.

Member Data Documentation

template<class TVal>
TCRef PVec< TVal >::CRef
private

Definition at line 2064 of file ds.h.

template<class TVal>
TVec<TVal> PVec< TVal >::V

Definition at line 2066 of file ds.h.


The documentation for this class was generated from the following file: