SNAP Library 3.0, User Reference  2016-07-20 17:56:49
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 2110 of file ds.h.

Constructor & Destructor Documentation

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

Definition at line 2116 of file ds.h.

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

Definition at line 2117 of file ds.h.

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

Definition at line 2120 of file ds.h.

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

Definition at line 2123 of file ds.h.

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

Definition at line 2126 of file ds.h.

2126 : V(SIn){}
TVec< TVal > V
Definition: ds.h:2114

Member Function Documentation

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

Definition at line 2140 of file ds.h.

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

Definition at line 2136 of file ds.h.

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

Definition at line 2138 of file ds.h.

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

Definition at line 2137 of file ds.h.

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

Definition at line 2127 of file ds.h.

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

Definition at line 2118 of file ds.h.

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

Definition at line 2121 of file ds.h.

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

Definition at line 2124 of file ds.h.

2124  {
2125  return new PVec<TVal>(V);}
TVec< TVal > V
Definition: ds.h:2114
Definition: ds.h:2110
template<class TVal>
bool PVec< TVal >::operator< ( const PVec< TVal > &  Vec) const
inline

Definition at line 2133 of file ds.h.

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

Definition at line 2130 of file ds.h.

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

Definition at line 2132 of file ds.h.

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

Definition at line 2134 of file ds.h.

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

Definition at line 2128 of file ds.h.

2128 {V.Save(SOut);}
TVec< TVal > V
Definition: ds.h:2114
void Save(TSOut &SOut) const
Definition: ds.h:903

Friends And Related Function Documentation

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

Definition at line 2142 of file ds.h.

Member Data Documentation

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

Definition at line 2112 of file ds.h.

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

Definition at line 2114 of file ds.h.


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