AuroraRuntime/Include/Aurora
Jamie Reece Wilson 83f34b0c47 [*] I was right. String views are [mostly] pointless (*)
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
2024-04-19 05:58:08 +01:00
..
Async [*] Harden AuFutures against OOM 2024-03-17 16:09:24 +00:00
CmdLine [*] I was right. String views are [mostly] pointless (*) 2024-04-19 05:58:08 +01:00
Compression [*] Updated some comments 2024-02-28 17:13:57 +00:00
Console [*] I was right. String views are [mostly] pointless (*) 2024-04-19 05:58:08 +01:00
Crypto [*] I was right. String views are [mostly] pointless (*) 2024-04-19 05:58:08 +01:00
Data [+] Added move and copy operators + constructors for types that are either struct members in the public API or are likely to be copied by the user 2022-05-27 20:33:42 +01:00
Debug [*] Move #if defined(_AUHAS_FMT) around 2024-03-17 06:19:22 +00:00
Exit [+] Linux Exception Handlers and AuExit::ETriggerLevel::eSigQuitNow 2024-03-05 13:55:21 +00:00
Hashing [*] Updated some comments 2024-02-28 17:13:57 +00:00
HWInfo [*] Switch over to mapped cpuset ids as opposed to the ((groupIndex + 1ull) * 0x100ull) + logicalProcessorIndex approximation 2024-03-04 13:07:49 +00:00
IO [*] I was right. String views are [mostly] pointless (*) 2024-04-19 05:58:08 +01:00
Locale [*] I was right. String views are [mostly] pointless (*) 2024-04-19 05:58:08 +01:00
Logging [*] Destink Stinks.hpp 2024-04-11 14:53:02 +01:00
Memory [*] I was right. String views are [mostly] pointless (*) 2024-04-19 05:58:08 +01:00
Parse [*] I was right. String views are [mostly] pointless (*) 2024-04-19 05:58:08 +01:00
Process [*] Introduce APIs to access IProcessSectionMapView safely when malicious calls to Unmap could be made 2024-04-12 13:42:30 +01:00
Processes [*] I was right. String views are [mostly] pointless (*) 2024-04-19 05:58:08 +01:00
Registry [+] Added move and copy operators + constructors for types that are either struct members in the public API or are likely to be copied by the user 2022-05-27 20:33:42 +01:00
RNG [+] ERngStringCharacters::eLowerAlphaNumericCharacters 2024-03-11 17:33:36 +00:00
SWInfo [*] Docs: Emphasize what IsWindowsNNN*ANY* means 2024-02-14 07:25:07 +00:00
Telemetry [*/+/-] MEGA COMMIT. ~2 weeks compressed. 2022-02-17 00:11:40 +00:00
Threading [+] (reference futex primitive) AuFutexMutexSpecial = AuThreading::Waitables::FutexWaitableNoVTblMovable 2024-04-16 04:30:31 +01:00
Time [*] Refactor "Jiffies" to "Frequency" 2023-12-01 04:49:18 +00:00
Utility [+] ADestructionWatcher::ADestructionWatcher(ADestructionWatcher &&move); 2024-03-17 19:00:05 +00:00
Runtime.hpp [*] MSVC build regression 2024-03-24 15:30:00 +00:00
RuntimeAliases.hpp [+] (reference futex primitive) AuFutexMutexSpecial = AuThreading::Waitables::FutexWaitableNoVTblMovable 2024-04-16 04:30:31 +01:00
RuntimeConfig.hpp [*] Clean up grug and auasync scheduler / improved idle cpu usage 2024-03-26 18:38:52 +00:00