mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 13:17:49 +00:00
17 lines
368 B
C#
17 lines
368 B
C#
using Microsoft.Ccr.Core;
|
|
|
|
namespace Roblox;
|
|
|
|
public interface IAsyncDictionary<TKey, TValue>
|
|
{
|
|
void Add(TKey key, TValue value, Port<EmptyValue> result);
|
|
|
|
void ContainsKey(TKey key, Port<bool> result);
|
|
|
|
void Remove(TKey key, Port<bool> result);
|
|
|
|
void TryGetValue(TKey key, PortSet<TValue, EmptyValue> result);
|
|
|
|
void GetOrCreate(TKey key, Port<TValue> result);
|
|
}
|