MayaFlux 0.1.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 mutable reference to the result.

Returns
Mutable reference to the processed data

Definition at line 256 of file OperationChain.hpp.

257 {
258 if (!m_successful) {
259 throw std::runtime_error("Cannot get result from failed chain");
260 }
261 return m_data;
262 }