LLFIO v2.00
Loading...
Searching...
No Matches
llfio_v2_xxx::algorithm::impl Namespace Reference

Does not exist in the actual source code, purely here to workaround doxygen limitations. More...

Classes

struct  trivial_vector_impl
 
struct  trivial_vector_impl< true, T >
 
class  trivial_vector_iterator
 

Functions

template<class T >
trivial_vector_iterator< T > operator+ (trivial_vector_iterator< T > a, size_t n)
 Adds to the iterator.
 
template<class T >
trivial_vector_iterator< T > operator+ (size_t n, trivial_vector_iterator< T > a)
 Adds to the iterator.
 
template<class T >
trivial_vector_iterator< T > operator- (trivial_vector_iterator< T > a, size_t n)
 Subtracts from the iterator.
 

Detailed Description

Does not exist in the actual source code, purely here to workaround doxygen limitations.

Function Documentation

◆ operator+() [1/2]

template<class T >
trivial_vector_iterator< T > llfio_v2_xxx::algorithm::impl::operator+ ( size_t  n,
trivial_vector_iterator< T >  a 
)
inline

Adds to the iterator.

147 {
148 a += n;
149 return a;
150 }

◆ operator+() [2/2]

template<class T >
trivial_vector_iterator< T > llfio_v2_xxx::algorithm::impl::operator+ ( trivial_vector_iterator< T >  a,
size_t  n 
)
inline

Adds to the iterator.

141 {
142 a += n;
143 return a;
144 }

◆ operator-()

template<class T >
trivial_vector_iterator< T > llfio_v2_xxx::algorithm::impl::operator- ( trivial_vector_iterator< T >  a,
size_t  n 
)
inline

Subtracts from the iterator.

153 {
154 a -= n;
155 return a;
156 }