Return the first N elements of this Array that don't satisfy the given predicate.

Synopsis

Declared in <llvm/ADT/ArrayRef.h>

template<class PredicateT>
MutableArrayRef<T>
take_until(PredicateT Pred) const;

Return Value

Represent a mutable reference to an array (0 or more elements consecutively in memory), i.e. a start pointer and a length. It allows various APIs to take and modify consecutive elements easily and conveniently.

Created with MrDocs