HomeReferenceSignal.h ⇀ With

With function

Utility function to create a signal pack.

Syntax

template
<
    typename D,
    typename ... TValues
>
SignalPack<D,TValues ...>
	With(const Signal<D,TValues>&  ... deps);

Semantics

Creates a SignalPack from the signals passed as deps.

Semantically, this is equivalent to std::tie.