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
..
2023-12-23 20:41:07 +01:00
2023-11-20 09:44:29 +01:00
2023-07-28 14:51:07 +02:00
2023-07-28 14:51:07 +02:00
2023-08-09 21:06:54 -06:00
2023-12-23 20:41:07 +01:00
2023-12-01 20:46:16 +01:00
2023-12-01 20:46:21 +01:00
2023-06-04 21:32:34 +02:00
2023-03-10 13:15:44 +01:00
2023-08-25 11:36:57 +01:00
2023-08-25 11:36:57 +01:00
2023-06-04 21:32:34 +02:00
2023-06-04 21:32:34 +02:00
2023-06-04 21:32:34 +02:00
2023-06-04 21:32:34 +02:00
2023-07-02 01:04:51 +02:00
2023-07-15 00:12:01 +02:00
2023-07-15 00:12:01 +02:00
2023-11-09 10:05:51 -05:00
2023-07-02 01:04:51 +02:00
2023-11-20 09:44:29 +01:00
2023-07-08 10:32:56 +01:00
2023-06-04 21:32:34 +02:00
2023-04-08 13:44:21 +02:00
2023-06-04 21:32:34 +02:00
2023-10-01 13:34:41 +02:00
2023-06-04 21:32:34 +02:00
2023-07-08 10:32:56 +01:00
2023-07-15 00:12:01 +02:00
2023-07-15 00:12:01 +02:00
2023-08-09 21:06:54 -06:00
2023-07-02 01:04:51 +02:00
2023-09-09 12:08:59 -06:00
2023-07-02 01:04:51 +02:00
2023-06-04 21:32:34 +02:00
2023-08-25 08:34:21 -04:00
2023-08-05 18:41:01 +02:00