/// <summary> /// Lookup a single item using the specified key. /// </summary> /// <remarks> /// Fast indexed lookup /// </remarks> /// <param name="key">The key.</param> /// <returns></returns> public Optional <TObject> Lookup(TKey key) => _innerCache.Lookup(key);
/// <summary> /// Lookup a single item using the specified key. /// </summary> /// <remarks> /// Fast indexed lookup /// </remarks> /// <param name="key">The key.</param> /// <returns></returns> public Optional <TObject> Lookup(TKey key) { return(_innnerCache.Lookup(key)); }