A Codec implementation that serializes and deserializes key-value pairs with an
= separator.
Input:
{
'Value1': 'A',
'Value2': 'B',
'Value3': 'C',
}Output:
Value1=A
Value2=B
Value3=CSee the example for example usage.
The standard Codec interface is implemented by ValuesCodec.
- Chunked conversions
This method of serialization is common in APIs and preference storage.
I don't recommend you use this if you're designing an API or storing your own preferences;
formats like JSON, XML and YAML are much better for that kind of thing. This package is useful
for using this format when you have no other choice.