template<class T, class handle_type, size_t grow = 1024>
class ECS::util::HandleTable< T, handle_type, grow >
Definition at line 107 of file Handle.h.
template<class T , class handle_type , size_t grow = 1024>
Fn: inline bool HandleTable::IsValidHandle(const Handle& handle) const
Summary: Check if a 'handle' is expired, that is, its intern version is different from actual version stored in table.
Author: Tobias Stein
Date: 1/10/2017
Parameters: handle - The handle.
Returns: True if valid handle, false if not.
Definition at line 188 of file Handle.h.
template<class T , class handle_type , size_t grow = 1024>
Fn: Handle HandleTable::operator[](HANDLE_VALUE_TYPE i) const
Summary: Returns handle from table at position described by i.
Author: Tobias Stein
Date: 1/10/2017
Parameters: i - Zero-based index of the.
Returns: The indexed value.
Definition at line 208 of file Handle.h.