Exemplo n.º 1
0
        public static async Task AssertExists(this LTrie trie, string key)
        {
            using var result = await trie.GetValue("@utTestTa");

            Assert.NotNull(result);
        }
Exemplo n.º 2
0
 public async Task RandomSearch()
 {
     (await trie.GetValue(key))?.Dispose();
 }