BidirectionalMap 1.0.0
Install-Package BidirectionalMap -Version 1.0.0
dotnet add package BidirectionalMap --version 1.0.0
<PackageReference Include="BidirectionalMap" Version="1.0.0" />
paket add BidirectionalMap --version 1.0.0
#r "nuget: BidirectionalMap, 1.0.0"
// Install BidirectionalMap as a Cake Addin
#addin nuget:?package=BidirectionalMap&version=1.0.0
// Install BidirectionalMap as a Cake Tool
#tool nuget:?package=BidirectionalMap&version=1.0.0
Bidirectional Map
Exactly what it sounds like. This library offers a single class BiMap
that let's you define a two-way one-to-one map between values
the same way you would define a one-way map with a dictionary.
Example:
using BidirectionalMap;
BiMap<int, string> map = new BiMap<int, string>(){
{1, "Circle"},
{2, "Triangle"},
{3, "Square"},
};
var mappedString = map.Forward[1]; //"Circle"
var mappedInt = map.Reverse["Circle"]; // 1
It isn't limited to value types
BiMap<int, Action> map = new BiMap<int, string>(){
{1, () => /* do something*/},
};
var action = map.Forward[1];
Why?
Well, table-driven value mapping is a very powerfull technique that makes conversions more readable, easier to update, and easier to load from non-code sources.
Some common scenarios for this kind of technique include
- Mapping to some kind of storage (say, converting between enum and string)
- Mapping display values to and from requests
- Wrapping other code (adapter-style) to consume the api on your own terms
- Choosing an action or configuration based on some kind of type value (this is usually just one-way though)
Install
Will be available as a nuget package... pending upload
Feedback/Bugs/Contribution
Feel free to open an issue to start the conversation.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp1.0 netcoreapp1.1 netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard1.6 netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen30 tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 1.6
- NETStandard.Library (>= 1.6.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 9,910 | 4/24/2020 |