Jamie Reece Wilson
83f34b0c47
03:28:55:638 17>2 of 53388 functions (<0.1%) were compiled, the rest were copied from previous compilation. 03:28:55:638 17> 0 functions were new in current compilation 03:28:55:638 17> 65 functions had inline decision re-evaluated but remain unchanged 03:28:56:749 17>Finished generating code the header of const AuString & is the same as std::string_view therefore nothing changes. in fact, we still need to alloc strings a bunch of times for a zero terminated string. worse, <c++20 always allocs each time we want to access a hashmap with o(1) lookup, making small hashmaps kinda pointless when we always have to alloc+copy (thx std) perhaps this will help some language binders
27 lines
679 B
C++
27 lines
679 B
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: Hex.hpp
|
|
Date: 2021-8-28
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::Parse
|
|
{
|
|
AUE_DEFINE(EHexDump,
|
|
(
|
|
eString,
|
|
eZeroXSpace,
|
|
eHexEditor,
|
|
eCLiteral,
|
|
eJSLiteral
|
|
));
|
|
|
|
AUKN_SYM bool HexToByte(const char(hex)[2], AuUInt8 &val);
|
|
AUKN_SYM void ByteToHex(AuUInt8 val, char(&hex)[2]);
|
|
AUKN_SYM bool HexToInt (const AuROString &hex, AuUInt64 &val);
|
|
|
|
AUKN_SYM bool EncodeHex(Memory::MemoryViewRead view, EHexDump formatting, AuString &out);
|
|
AUKN_SYM bool DecodeHex(const AuROString &in, Memory::ByteBuffer &out);
|
|
} |