AuroraRuntime/Source/Console/ConsoleTTY
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
..
ConsoleTTY.cpp [*] I was right. String views are [mostly] pointless (*) 2024-04-19 05:58:08 +01:00
ConsoleTTY.hpp [*] mitigations and clean up before two major commits 2023-12-26 21:01:29 +00:00
ConsoleTTY.NT.cpp [*] Made conapi requirement under Win32 optional and completely nuke the code when building under non-win32 targets 2024-04-14 23:11:20 +01:00
ConsoleTTY.NT.hpp [*] Fix: win32 console - copy/paste scroll bug 2022-09-09 21:32:10 +01:00
ConsoleTTY.Unix.cpp Further Linux support 2022-08-02 05:52:57 +01:00
ConsoleTTY.Unix.hpp [*] Linux builds again. Still behind 2022-06-23 13:25:20 +01:00