serenity/Base
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
..
etc Base: Add bind-mount for /usr/Ports/ to make it writable 2023-08-07 13:24:25 -06:00
home/anon LibWeb+WebWorker: Move worker execution into a new WebWorker process 2023-11-15 12:56:33 +01:00
res LibWeb: Hide select chevron icon when appearance: none; 2023-12-23 10:12:36 +01:00
root Base: Stop generating strace(1) manpage 2023-07-06 10:41:49 +01:00
usr/share Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
www Base: Improve default WebServer pages 2022-02-23 21:28:17 +00:00