Skip to content

Commit

Permalink
feat: lazy map cache invalidation
Browse files Browse the repository at this point in the history
  • Loading branch information
Clazex committed Jan 26, 2023
1 parent bf9b6df commit 93b0934
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Osmi/Utils/LazyMap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,8 @@ public V this[K key] {
}
}
}

public void Remove(K key) => inner.Remove(key);

public void Clear() => inner.Clear();
}

0 comments on commit 93b0934

Please sign in to comment.