MayaFlux 0.1.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 result.

Returns
Const reference to the processed data

Definition at line 244 of file OperationChain.hpp.

245 {
246 if (!m_successful) {
247 throw std::runtime_error("Cannot get result from failed chain");
248 }
249 return m_data;
250 }