SignedOverpunch
Module for converting a string in signed overpunch format into the corresponding integer.
Installation
If available in Hex, the package can be installed
by adding signed_overpunch to your list of dependencies in mix.exs:
def deps do
[{:signed_overpunch, "~> 0.1.0"}]
endDocumentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/signed_overpunch.
Conversion Table:
| Code | Digit | Sign |
|---|---|---|
| } | 0 | − |
| J | 1 | − |
| K | 2 | − |
| L | 3 | − |
| M | 4 | − |
| N | 5 | − |
| O | 6 | − |
| P | 7 | − |
| Q | 8 | − |
| R | 9 | − |
| { | 0 | + |
| A | 1 | + |
| B | 2 | + |
| C | 3 | + |
| D | 4 | + |
| E | 5 | + |
| F | 6 | + |
| G | 7 | + |
| H | 8 | + |
| I | 9 | + |