Skip to content

Latest commit

 

History

History
97 lines (83 loc) · 2.88 KB

encoding.md

File metadata and controls

97 lines (83 loc) · 2.88 KB

encoding

class encoding.ascii.LegacyASCIITable

Source: /home/runner/work/aspl/aspl/stdlib/encoding/ascii/LegacyASCIITable.aspl:2:1

property idToChar

Source: /home/runner/work/aspl/aspl/stdlib/encoding/ascii/LegacyASCIITable.aspl:6:5

property map<byte, string> idToChar

property charToId

Source: /home/runner/work/aspl/aspl/stdlib/encoding/ascii/LegacyASCIITable.aspl:271:5

property map<string, byte> charToId

function encoding.ascii.decode

Source: /home/runner/work/aspl/aspl/stdlib/encoding/ascii/decoder.aspl:4:1

function decode(list<byte> bytes) returns string

function encoding.ascii.decode_char

Source: /home/runner/work/aspl/aspl/stdlib/encoding/ascii/decoder.aspl:13:1

function decode_char(byte b) returns string

function encoding.ascii.encode

Source: /home/runner/work/aspl/aspl/stdlib/encoding/ascii/encoder.aspl:4:1

function encode(string s) returns list<byte>

function encoding.ascii.encode_char

Source: /home/runner/work/aspl/aspl/stdlib/encoding/ascii/encoder.aspl:13:1

function encode_char(string c) returns byte

function encoding.base64.encode

Source: /home/runner/work/aspl/aspl/stdlib/encoding/base64/base64.aspl:2:1

function encode(string s) returns string

function encoding.base64.decode

Source: /home/runner/work/aspl/aspl/stdlib/encoding/base64/base64.aspl:7:1

function decode(string s) returns string

function encoding.hex.encode

Source: /home/runner/work/aspl/aspl/stdlib/encoding/hex/hex.aspl:5:1

function encode(string hex) returns int

function encoding.hex.encode_digit

Source: /home/runner/work/aspl/aspl/stdlib/encoding/hex/hex.aspl:16:1

function encode_digit(string hex) returns byte

function encoding.hex.decode

Source: /home/runner/work/aspl/aspl/stdlib/encoding/hex/hex.aspl:53:1

function decode(int n) returns string

function encoding.hex.decode_digit

Source: /home/runner/work/aspl/aspl/stdlib/encoding/hex/hex.aspl:65:1

function decode_digit(byte b) returns string

function encoding.utf8.encode

Source: /home/runner/work/aspl/aspl/stdlib/encoding/utf8/utf8.aspl:2:1

function encode(string s) returns list<byte>

function encoding.utf8.encode_char

Source: /home/runner/work/aspl/aspl/stdlib/encoding/utf8/utf8.aspl:7:1

function encode_char(string c) returns int

function encoding.utf8.decode

Source: /home/runner/work/aspl/aspl/stdlib/encoding/utf8/utf8.aspl:12:1

function decode(list<byte> bytes) returns string

function encoding.utf8.decode_char

Source: /home/runner/work/aspl/aspl/stdlib/encoding/utf8/utf8.aspl:17:1

function decode_char(int code) returns string