MCPcopy Create free account
hub / github.com/FastLED/FastLED / operator+

Method operator+

src/fl/stl/basic_string.h:83–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

81 iterator operator--(int) FL_NOEXCEPT { iterator tmp = *this; --ptr; return tmp; }
82
83 iterator operator+(difference_type n) const FL_NOEXCEPT { return iterator(ptr + n); }
84 iterator operator-(difference_type n) const FL_NOEXCEPT { return iterator(ptr - n); }
85 iterator& operator+=(difference_type n) FL_NOEXCEPT { ptr += n; return *this; }
86 iterator& operator-=(difference_type n) FL_NOEXCEPT { ptr -= n; return *this; }

Callers

nothing calls this directly

Calls 1

iteratorClass · 0.70

Tested by

no test coverage detected