#include <type_traits>
#include <utility>
Go to the source code of this file.
|
| template<typename T > |
| constexpr auto | yorch::from_ctx () noexcept -> from_ctx_t< std::remove_cvref_t< T > > |
| | Creates a spec that asks execution to fetch T from the context.
|
| |
| template<typename T > |
| constexpr auto | yorch::borrow_prev () noexcept -> borrow_prev_t< std::remove_cvref_t< T > > |
| | Creates a spec that borrows T from the direct parent output slot as const T&.
|
| |
| template<typename T > |
| constexpr auto | yorch::borrow_prev_mut () noexcept -> borrow_prev_mut_t< std::remove_cvref_t< T > > |
| | Creates a spec that borrows T from the direct parent output slot as T&.
|
| |
| template<typename T > |
| constexpr auto | yorch::copy_prev () noexcept -> copy_prev_t< std::remove_cvref_t< T > > |
| | Creates a spec that copies T from the direct parent output slot as a new value.
|
| |
| template<typename T > |
| constexpr auto | yorch::consume_prev () noexcept -> consume_prev_t< std::remove_cvref_t< T > > |
| | Creates a spec that consumes T from the direct parent output slot.
|
| |
| template<typename T > |
| constexpr auto | yorch::value (T &&v) -> value_t< std::remove_cvref_t< T > > |
| | Wraps a value as an owning spec.
|
| |