SNAP Library 6.0, Developer Reference  2020-12-09 16:24:20
SNAP, a general purpose, high performance system for analysis and manipulation of large networks
PVec< TVal > Class Template Reference

#include <ds.h>

Collaboration diagram for PVec< TVal >:

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 2176 of file ds.h.

Constructor & Destructor Documentation

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

Definition at line 2182 of file ds.h.

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

Definition at line 2183 of file ds.h.

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

Definition at line 2186 of file ds.h.

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

Definition at line 2189 of file ds.h.

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

Definition at line 2192 of file ds.h.

2192 : V(SIn){}
TVec< TVal > V
Definition: ds.h:2180

Member Function Documentation

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

Definition at line 2206 of file ds.h.

References TVec< TVal, TSizeTy >::Add().

2206 {return V.Add(Val);}
TVec< TVal > V
Definition: ds.h:2180
TSizeTy Add()
Adds a new element at the end of the vector, after its current last element.
Definition: ds.h:602

Here is the call graph for this function:

template<class TVal>
bool PVec< TVal >::Empty ( ) const
inline

Definition at line 2202 of file ds.h.

References TVec< TVal, TSizeTy >::Empty().

2202 {return V.Empty();}
TVec< TVal > V
Definition: ds.h:2180
bool Empty() const
Tests whether the vector is empty.
Definition: ds.h:570

Here is the call graph for this function:

template<class TVal>
TVal PVec< TVal >::GetVal ( const int &  ValN) const
inline

Definition at line 2204 of file ds.h.

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

Definition at line 2203 of file ds.h.

References TVec< TVal, TSizeTy >::Len().

2203 {return V.Len();}
TVec< TVal > V
Definition: ds.h:2180
TSizeTy Len() const
Returns the number of elements in the vector.
Definition: ds.h:575

Here is the call graph for this function:

template<class TVal>
static TPt<PVec<TVal> > PVec< TVal >::Load ( TSIn SIn)
inlinestatic

Definition at line 2193 of file ds.h.

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

Definition at line 2184 of file ds.h.

Referenced by TSs::LoadTxt().

2184  {
2185  return new PVec<TVal>();}
Definition: ds.h:2176

Here is the caller graph for this function:

template<class TVal>
static TPt<PVec<TVal> > PVec< TVal >::New ( const int &  MxVals,
const int &  Vals 
)
inlinestatic

Definition at line 2187 of file ds.h.

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

Definition at line 2190 of file ds.h.

References PVec< TVal >::V.

2190  {
2191  return new PVec<TVal>(V);}
TVec< TVal > V
Definition: ds.h:2180
Definition: ds.h:2176
template<class TVal>
bool PVec< TVal >::operator< ( const PVec< TVal > &  Vec) const
inline

Definition at line 2199 of file ds.h.

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

Definition at line 2196 of file ds.h.

References PVec< TVal >::V.

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

Definition at line 2198 of file ds.h.

References PVec< TVal >::V.

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

Definition at line 2200 of file ds.h.

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

Definition at line 2194 of file ds.h.

References TVec< TVal, TSizeTy >::Save().

2194 {V.Save(SOut);}
TVec< TVal > V
Definition: ds.h:2180
void Save(TSOut &SOut) const
Definition: ds.h:954

Here is the call graph for this function:

Friends And Related Function Documentation

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

Definition at line 2208 of file ds.h.

Member Data Documentation

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

Definition at line 2178 of file ds.h.

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

Definition at line 2180 of file ds.h.

Referenced by PVec< TVal >::New(), PVec< TVal >::operator=(), and PVec< TVal >::operator==().


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