foobar2000 SDK  2015-01-14
Public Member Functions | Private Member Functions | Private Attributes
pfc::list_partial_ref_t< T >

#include <list.h>

+ Inheritance diagram for pfc::list_partial_ref_t< T >:

Public Member Functions

 list_partial_ref_t (const list_base_const_t< T > &p_list, t_size p_base, t_size p_count)
 
- Public Member Functions inherited from pfc::list_base_const_t< T >
template<typename t_compare , typename t_param , typename t_permutation >
bool bsearch_permutation_t (t_compare p_compare, t_param const &p_param, const t_permutation &p_permutation, t_size &p_index) const
 
template<typename t_compare , typename t_param >
bool bsearch_t (t_compare p_compare, t_param const &p_param, t_size &p_index) const
 
template<typename t_callback >
void enumerate (t_callback &p_callback) const
 
template<typename t_compare , typename t_permutation >
t_size find_duplicates_sorted_permutation_t (t_compare p_compare, t_permutation const &p_permutation, bit_array_var &p_out)
 
template<typename t_compare >
t_size find_duplicates_sorted_t (t_compare p_compare, bit_array_var &p_out) const
 
template<typename t_search >
t_size find_item (const t_search &p_item) const
 
T get_item (t_size n) const
 
t_size get_size () const
 
template<typename t_search >
bool have_item (const t_search &p_item) const
 
bool operator!= (const t_self &item2) const
 
bool operator== (const t_self &item2) const
 
T operator[] (t_size n) const
 
template<typename t_compare , typename t_permutation >
void sort_get_permutation_t (t_compare p_compare, t_permutation const &p_permutation) const
 
template<typename t_compare , typename t_permutation >
void sort_stable_get_permutation_t (t_compare p_compare, t_permutation const &p_permutation) const
 

Private Member Functions

t_size get_count () const
 
void get_item_ex (T &p_out, t_size n) const
 

Private Attributes

t_size m_base
 
t_size m_count
 
const list_base_const_t< T > & m_list
 

Additional Inherited Members

- Public Types inherited from pfc::list_base_const_t< T >
typedef T t_item
 
- Static Public Member Functions inherited from pfc::list_base_const_t< T >
static bool g_equals (const t_self &item1, const t_self &item2)
 
- Protected Member Functions inherited from pfc::list_base_const_t< T >
 list_base_const_t ()
 
 list_base_const_t (const t_self &)
 
 ~list_base_const_t ()
 
void operator= (const t_self &)
 

Detailed Description

template<typename T>
class pfc::list_partial_ref_t< T >

Definition at line 103 of file list.h.

Constructor & Destructor Documentation

template<typename T >
pfc::list_partial_ref_t< T >::list_partial_ref_t ( const list_base_const_t< T > &  p_list,
t_size  p_base,
t_size  p_count 
)
inline

Definition at line 106 of file list.h.

107  : m_list(p_list), m_base(p_base), m_count(p_count)
108  {
109  PFC_ASSERT(m_base + m_count <= m_list.get_count());
110  }
const list_base_const_t< T > & m_list
Definition: list.h:113

Member Function Documentation

template<typename T >
t_size pfc::list_partial_ref_t< T >::get_count ( ) const
inlineprivatevirtual

Implements pfc::list_base_const_t< T >.

Definition at line 116 of file list.h.

116 {return m_count;}
template<typename T >
void pfc::list_partial_ref_t< T >::get_item_ex ( T p_out,
t_size  n 
) const
inlineprivatevirtual

Implements pfc::list_base_const_t< T >.

Definition at line 117 of file list.h.

117 {m_list.get_item_ex(p_out,n+m_base);}
const list_base_const_t< T > & m_list
Definition: list.h:113

Field Documentation

template<typename T >
t_size pfc::list_partial_ref_t< T >::m_base
private

Definition at line 114 of file list.h.

template<typename T >
t_size pfc::list_partial_ref_t< T >::m_count
private

Definition at line 114 of file list.h.

template<typename T >
const list_base_const_t<T>& pfc::list_partial_ref_t< T >::m_list
private

Definition at line 113 of file list.h.


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