[ADT] Add a remarkbly useful little helper routine to ArrayRef for
authorChandler Carruth <chandlerc@gmail.com>
Sun, 27 Jul 2014 01:11:19 +0000 (01:11 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Sun, 27 Jul 2014 01:11:19 +0000 (01:11 +0000)
commit8e704b16f1f4f0723c93a6b3cd7dcb8331c53246
tree58a42f45309e575d63aef6f9abc8c0d265ca777b
parent86ac3829af2556b08441799320cca2dde711c80c
[ADT] Add a remarkbly useful little helper routine to ArrayRef for
checking whether the ArrayRef is equal to an explicit list of arguments.

This is particularly easy to implement even without variadic templates
because ArrayRef happens to be homogeneously typed. As a consequence we
can use a "clever" wrapper type and default arguments to capture in
a single method many arguments as well as *how many* arguments the user
specified.

Thanks to Dave Blaikie for helping me pull together this little helper.
Suggestions for how to improve or generalize it are of course welcome.
I'll be using it immediately in my follow-up patch. =D

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214041 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/ADT/ArrayRef.h
unittests/ADT/ArrayRefTest.cpp