MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / Erase

Function Erase

rapidjson/document.h:1652–1654  ·  view source on GitHub ↗

Remove an element of array by iterator. ! \param pos iterator to the element to remove \pre IsArray() == true && \ref Begin() <= \c pos < \ref End() \return Iterator following the removed element. If the iterator pos refers to the last element, the End() iterator is returned. \note Linear time complexity. */

Source from the content-addressed store, hash-verified

1650 \note Linear time complexity.
1651 */
1652 ValueIterator Erase(ConstValueIterator pos) {
1653 return Erase(pos, pos + 1);
1654 }
1655
1656 //! Remove elements in the range [first, last) of the array.
1657 /*!

Callers

nothing calls this directly

Calls 4

IsArrayFunction · 0.85
GetElementsPointerFunction · 0.85
BeginFunction · 0.85
EndFunction · 0.85

Tested by

no test coverage detected