ladybird/Userland/Libraries/LibArchive
Shannon Booth e2e7c4d574 Everywhere: Use to_number<T> instead of to_{int,uint,float,double}
In a bunch of cases, this actually ends up simplifying the code as
to_number will handle something such as:

```
Optional<I> opt;
if constexpr (IsSigned<I>)
    opt = view.to_int<I>();
else
    opt = view.to_uint<I>();
```

For us.

The main goal here however is to have a single generic number conversion
API between all of the String classes.
2023-12-23 20:41:07 +01:00
..
CMakeLists.txt LibArchive: Add helper functions for adding members to a ZipOutputStream 2023-07-08 13:14:50 +01:00
Statistics.h LibArchive: Extract logic for calculating ZIP statistics 2023-07-30 22:16:40 +01:00
Tar.cpp LibArchive+Utilities: Stop using DeprecatedString 2023-01-08 09:54:08 +00:00
Tar.h AK: Rename GenericTraits to DefaultTraits 2023-11-09 10:05:51 -05:00
TarStream.cpp LibArchive: Read Tar archive headers through read_value 2023-03-13 15:16:20 +00:00
TarStream.h Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
Zip.cpp LibArchive: Extract logic for calculating ZIP statistics 2023-07-30 22:16:40 +01:00
Zip.h LibArchive: Extract logic for calculating ZIP statistics 2023-07-30 22:16:40 +01:00