MayaFlux 0.4.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ get()

template<typename Executor , ComputeData DataType>
const DataType & MayaFlux::Yantra::FluentExecutor< Executor, DataType >::get ( ) const
inline

Get the final raw result by const reference.

Returns
Const reference to the processed DataType

Definition at line 358 of file OperationChain.hpp.

359 {
360 if (!m_successful) {
361 error<std::runtime_error>(
363 std::source_location::current(),
364 "Cannot get result from failed chain");
365 }
366 return m_data.data;
367 }
@ ComputeMatrix
Compute operations (Yantra - algorithms, matrices, DSP)
@ Yantra
DSP algorithms, computational units, matrix operations, Grammar.
T data
The actual computation data.
Definition DataIO.hpp:25