Class Dictionary.Indexer<K, V>
Provides strongly-typed access to dictionary indexer.
Namespace: DotNext.Collections.Generic
Assembly: DotNext.dll
Syntax
public static class Indexer<K, V> : object
Type Parameters
Name | Description |
---|---|
K | Type of keys in the dictionary. |
V | Type of values in the dictionary. |
Properties
| Improve this Doc View SourceGetter
Represents dictionary value getter.
Declaration
public static Func<IDictionary<K, V>, K, V> Getter { get; }
Property Value
Type | Description |
---|---|
DotNext.Func<IDictionary<K, V>, K, V> |
ReadOnly
Represents read-only dictionary indexer.
Declaration
public static Func<IReadOnlyDictionary<K, V>, K, V> ReadOnly { get; }
Property Value
Type | Description |
---|---|
DotNext.Func<IReadOnlyDictionary<K, V>, K, V> |
Setter
Represents dictionary value setter.
Declaration
public static Action<IDictionary<K, V>, K, V> Setter { get; }
Property Value
Type | Description |
---|---|
Action<IDictionary<K, V>, K, V> |