-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
featureSomething that should be implementedSomething that should be implementedgood first issueGood for newcomersGood for newcomers
Description
This should be the polymorphic brother of the standard dictionary.
This is the interface we should implement:
public interface IFluidDictionary<TKey>
{
bool Set<T>(TKey key, T value);
bool TryGetValue<T>(TKey key, out T value);
T GetValueOrDefault<T>(TKey key);
T GetRequiredValue<T>(TKey key);
IEnumerable<TKey> Keys { get; }
}Metadata
Metadata
Assignees
Labels
featureSomething that should be implementedSomething that should be implementedgood first issueGood for newcomersGood for newcomers