Click or drag to resize
ICustomLookupK Interface
Represents a special lookup. This can be used to support hierarchical or duplicate keys in an index. A key type `K` can come with associated `ICustomLookup<K>` to provide customized pattern matching (equality testing) [category:Parameters and results of various operations]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public interface ICustomLookup<K>

Type Parameters

K

The ICustomLookupK type exposes the following members.

Methods
  NameDescription
Public methodMatches
Tests whether a specified key matches the current key (for example, in hierarchical indexing based on tuples, if the current key represents a pair (1, _) then the value (1, 42) would match).
Top
See Also