8 #ifndef INCLUDE_TEMPLE_BINDING_H
9 #define INCLUDE_TEMPLE_BINDING_H
14 namespace Molassembler {
41 using type = std::conditional_t<
42 std::is_rvalue_reference<T&&>::value || std::is_fundamental<std::decay_t<T>>::value,
48 constexpr
explicit Binding(T&& t) noexcept : value(t) {}
Type that will own rvalues, reference lvalues.
Definition: Binding.h:37