Utility function to create a signal pack.
template
<
typename D,
typename ... TValues
>
SignalPack<D,TValues ...>
With(const Signal<D,TValues>& ... deps);Creates a SignalPack from the signals passed as deps.
Semantically, this is equivalent to std::tie.