Skip to content

Create a new DS called Fluid dictionary #45

@TonyTroeff

Description

@TonyTroeff

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 implementedgood first issueGood for newcomers

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions