From fc6e880d6d989b7220fcfe86449da56e63ce813e Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Tue, 30 Aug 2016 18:19:18 +0000 Subject: [PATCH] Rename ArrayRef::keep_front / keep_back to take_front / take_back. The name decided on was take_, but I only updated it for StringRef and forgot to do it for ArrayRef. llvm-svn: 280126 --- llvm/include/llvm/ADT/ArrayRef.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/llvm/include/llvm/ADT/ArrayRef.h b/llvm/include/llvm/ADT/ArrayRef.h index 47e1398..c1d66c6 100644 --- a/llvm/include/llvm/ADT/ArrayRef.h +++ b/llvm/include/llvm/ADT/ArrayRef.h @@ -195,17 +195,17 @@ namespace llvm { return slice(0, size() - N); } - /// \brief Keep the first \p N elements of the array. + /// \brief Return a copy of *this with only the first \p N elements. LLVM_ATTRIBUTE_UNUSED_RESULT - ArrayRef keep_front(size_t N = 1) const { + ArrayRef take_front(size_t N = 1) const { if (N >= size()) return *this; return drop_back(size() - N); } - /// \brief Keep the last \p N elements of the array. + /// \brief Return a copy of *this with only the last \p N elements. LLVM_ATTRIBUTE_UNUSED_RESULT - ArrayRef keep_back(size_t N = 1) const { + ArrayRef take_back(size_t N = 1) const { if (N >= size()) return *this; return drop_front(size() - N); @@ -337,17 +337,17 @@ namespace llvm { return slice(0, this->size() - N); } - /// \brief Drop everything but the first \p N elements of the array. + /// \brief Return a copy of *this with only the first \p N elements. LLVM_ATTRIBUTE_UNUSED_RESULT - MutableArrayRef keep_front(size_t N = 1) const { + MutableArrayRef take_front(size_t N = 1) const { if (N >= this->size()) return *this; return drop_back(this->size() - N); } - /// \brief Drop everything but the last \p N elements of the array. + /// \brief Return a copy of *this with only the last \p N elements. LLVM_ATTRIBUTE_UNUSED_RESULT - MutableArrayRef keep_back(size_t N = 1) const { + MutableArrayRef take_back(size_t N = 1) const { if (N >= this->size()) return *this; return drop_front(this->size() - N); -- 2.7.4