コード例 #1
0
 public bool Contains(ExpressionKey <T, U> key) => _lookup.Contains(key);
コード例 #2
0
 public bool Contains(U key) => _lookup.Contains(ExpressionKey.CreateValue <T, U>(key));
コード例 #3
0
 public IEnumerable <T> this[ExpressionKey <T, U> key] => _lookup[key];
コード例 #4
0
 public bool Contains(T key) => _lookup.Contains(ExpressionKey.CreateKey <T, U>(key));
コード例 #5
0
 public IEnumerable <T> GetMatches(U key) => _lookup[ExpressionKey.CreateValue <T, U>(key)];