omni::detail
-
namespace detail
Internal implementation details namespace.
Classes
omni::detail::PointerIterator: This iterator adapter wraps a pointer type into a class. It does not change the semantics of any operations from the fundamental logic of pointers. There are no bounds checks, there is no additional safety.
Functions
omni::detail::operator!=: Test for inequality between lhs and rhs .
omni::detail::operator+: Get an iterator dist elements forward from iter .
omni::detail::operator-: Get the distance between iterators lhs and rhs . If
lhs < rhs
, this value will be negative.omni::detail::operator<: Test that lhs points to something less than rhs .
omni::detail::operator<=: Test that lhs points to something less than or equal to rhs .
omni::detail::operator==: Test for equality between lhs and rhs .
omni::detail::operator>: Test that lhs points to something greater than rhs .
omni::detail::operator>=: Test that lhs points to something greater than or equal to rhs .