MCPcopy Create free account
hub / github.com/deathkiller/jazz2-native / exceptPrefix

Method exceptPrefix

Sources/Shared/Containers/ArrayView.h:379–381  ·  view source on GitHub ↗

* @brief View except the first @p size items * * Equivalent to @cpp data.slice(size, data.size()) @ce. */

Source from the content-addressed store, hash-verified

377 * Equivalent to @cpp data.slice(size, data.size()) @ce.
378 */
379 constexpr ArrayView<T> exceptPrefix(std::size_t size) const {
380 return slice(size, _size);
381 }
382
383 /**
384 * @brief View except the last @p size items

Callers 1

exceptPrefixFunction · 0.45

Calls 1

sliceFunction · 0.85

Tested by

no test coverage detected