[ADT] Add a default constructor and a bool conversion to function_ref.
authorChandler Carruth <chandlerc@gmail.com>
Sun, 9 Jul 2017 06:12:56 +0000 (06:12 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Sun, 9 Jul 2017 06:12:56 +0000 (06:12 +0000)
The internal representation has a natural way to handle this and it
seems nicer than having to wrap this in an optional (with its own
separate flag).

This also matches how std::function works.

llvm-svn: 307490

llvm/include/llvm/ADT/STLExtras.h
llvm/unittests/ADT/FunctionRefTest.cpp

index 8c28412..83f289c 100644 (file)
@@ -100,6 +100,8 @@ class function_ref<Ret(Params...)> {
   }
 
 public:
+  function_ref() : callback(nullptr) {}
+
   template <typename Callable>
   function_ref(Callable &&callable,
                typename std::enable_if<
@@ -110,6 +112,8 @@ public:
   Ret operator()(Params ...params) const {
     return callback(callable, std::forward<Params>(params)...);
   }
+
+  operator bool() const { return callback; }
 };
 
 // deleter - Very very very simple method that is used to invoke operator
index 075d9a0..b7ef7d7 100644 (file)
@@ -14,6 +14,20 @@ using namespace llvm;
 
 namespace {
 
+// Ensure that there is a default constructor and we can test for a null
+// function_ref.
+TEST(FunctionRefTest, Null) {
+  function_ref<int()> F;
+  EXPECT_FALSE(F);
+
+  auto L = [] { return 1; };
+  F = L;
+  EXPECT_TRUE(F);
+
+  F = {};
+  EXPECT_FALSE(F);
+}
+
 // Ensure that copies of a function_ref copy the underlying state rather than
 // causing one function_ref to chain to the next.
 TEST(FunctionRefTest, Copy) {