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

◆ get_mutable()

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

Get a mutable reference to the final raw result.

Returns
Mutable reference to the processed DataType

Definition at line 373 of file OperationChain.hpp.

374 {
375 if (!m_successful) {
376 error<std::runtime_error>(
378 std::source_location::current(),
379 "Cannot get mutable result from failed chain");
380 }
381 return m_data.data;
382 }
@ 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