Nui
nil.hpp
Go to the documentation of this file.
1 #pragma once
2 
4 
5 namespace Nui
6 {
7  [[maybe_unused]] static auto nil()
8  {
9  return [](auto& parentElement, Renderer const&) {
10  return std::shared_ptr<std::decay_t<decltype(parentElement)>>(nullptr);
11  };
12  }
13 }
Definition: file_dialog.hpp:6
static auto nil()
Definition: nil.hpp:7
Definition: materialize.hpp:52