Gets the VdfMaskedOutput provided by \p outputKeyIdentity. \return a mapped value from the Exec_CompiledOutputCache, which contains a VdfMaskedOutput and the compilation version at the time that output was added to the cache; or return nullptr if there is no entry for \p outputKeyIdentity. \note The returned VdfMaskedOutput may contain a null VdfOutput. This indicates that the given output key i
| 156 | /// corresponding output. |
| 157 | /// |
| 158 | const Exec_CompiledOutputCache::MappedType * |
| 159 | GetCompiledOutput( |
| 160 | const Exec_OutputKey::Identity &outputKeyIdentity) const { |
| 161 | return _compiledOutputCache.Find(outputKeyIdentity); |
| 162 | } |
| 163 | |
| 164 | /// Establishes that \p outputKeyIdentity is provided by \p maskedOutput. |
| 165 | /// |
no test coverage detected