BOSS 7.1.3
BESIII Offline Software System
Loading...
Searching...
No Matches
hashVector< H, T > Class Template Reference

#include <hash_vector.hh>

+ Inheritance diagram for hashVector< H, T >:

Public Member Functions

 hashVector (size_t max, size_t(*f)(const H &))
 
 hashVector (size_t max, size_t(*f)(const H &), T &initialValue)
 
 hashVector (const hashVector< H, T > &v)
 
T & operator[] (const H &index)
 
const T & operator[] (const H &index) const
 

Detailed Description

template<class H, class T>
class hashVector< H, T >

Definition at line 32 of file hash_vector.hh.

Constructor & Destructor Documentation

◆ hashVector() [1/3]

template<class H, class T>
hashVector< H, T >::hashVector ( size_t max,
size_t(* )(const H &) )
inline

Definition at line 54 of file hash_vector.hh.

55 : vector<T>(max), hashfun(f)
56{
57 // no further initialization
58}

Referenced by hashVector().

◆ hashVector() [2/3]

template<class H, class T>
hashVector< H, T >::hashVector ( size_t max,
size_t(* )(const H &),
T & initialValue )
inline

Definition at line 63 of file hash_vector.hh.

64 : vector<T>(max, initialValue), hashfun(f)
65{
66 // no further initialization
67}

◆ hashVector() [3/3]

template<class H, class T>
hashVector< H, T >::hashVector ( const hashVector< H, T > & v)
inline

Definition at line 72 of file hash_vector.hh.

73 : vector<T>(v), hashfun(v.hashfun)
74{
75 // no further initialization
76}

Member Function Documentation

◆ operator[]() [1/2]

template<class H, class T>
T & hashVector< H, T >::operator[] ( const H & index)
inline

Definition at line 81 of file hash_vector.hh.

82{
83 // subscript a hash vector
84 // hash the index value before indexing vector
85 return vector<T>::operator[] ((*hashfun)(index) % size());
86}

◆ operator[]() [2/2]

template<class H, class T>
const T & hashVector< H, T >::operator[] ( const H & index) const
inline

Definition at line 90 of file hash_vector.hh.

91{
92 // subscript a hash vector
93 // hash the index value before indexing vector
94 return vector<T>::operator[] ((*hashfun)(index) % size());
95}

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