Finite Repr

This create exists to encode & decode data types with a finite number of representations. English please! Okay, okay, this crates allows you to convert your data types into numbers & back (or any other data type that implements FiniteValue), assuming the number of possible representations for that data type can be counted with the type you are encoding too.

Should You use this?

Probably not, probably just stick with serde.

Before you use this

This crate has alpha levels of reliablity & isn't likley to be the most efficent approach to encode data in your appplication.

It will also panic if you encode a large type into a small data type in some cases, so...

Okay but how do I use this...

I would recommend deriving the implementations, instead writing them by hand to ensure they're isomorphic & correct.

```rs // If you choose to import it, this is how you would do so. use finite_repr::{FiniteRepr, FiniteDecoding, FiniteEncoding};

// You would probalby want to derive the implementations // for the types that use these traits, this ensures the // implementations are isomorphic.

[derive(FiniteRepr, FiniteDecoding, FiniteEncoding)]

struct Character(pub RpgClass, pub Faction);

[derive(FiniteRepr, FiniteDecoding, FiniteEncoding)]

enum RpgClass { Mage, Knight }

[derive(FiniteRepr, FiniteDecoding, FiniteEncoding)]

enum Faction { GoodGuysLtm, ComicallyEvilBadGuyTeam, AntagonistWhoMakesYouQuestionYourOwnSenseOfMoralityDotCom, }

impl PartialEq for Character { /* ... */ }

fn main() { let mycharacter = Character(RpgClass::Mage, Faction::GoodGuysLtm); let encoded = mycharacter.intofinite::(); let decoded = encoded.andthen(Character::from_finite);

// This assertion will be true. asserteq!(Some(mycharacter), decoded); }

```

Why does this exist?

I thought it would be fun to work on, but also I wanted a way to encode some data types with very limited possible representations in my game as numbers, as I was passing them through a trait object & couldn't make it generic. It was a side project where finishing the project was optional.

Shortcomings of this crate