ladybird/Userland/Libraries/LibVT
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
..
Attribute.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
CharacterSet.h
CMakeLists.txt Everywhere: Mark dependencies of most targets as PRIVATE 2022-11-01 14:49:09 +00:00
Color.h Everywhere: Run clang-format 2022-04-01 21:24:45 +01:00
EscapeSequenceParser.cpp Libraries: Use default constructors/destructors in LibVT 2022-03-13 22:34:38 +01:00
EscapeSequenceParser.h LibVT: Fix integer overflow when parsing long OSC sequences 2023-03-17 16:50:22 +00:00
Line.cpp Everywhere: Run clang-format 2022-04-01 21:24:45 +01:00
Line.h Everywhere: Run clang-format 2022-04-01 21:24:45 +01:00
Position.h Everywhere: Run clang-format 2022-04-01 21:24:45 +01:00
Range.h Everywhere: Run clang-format 2022-04-01 21:24:45 +01:00
StateMachine.txt
Terminal.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
Terminal.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
TerminalWidget.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
TerminalWidget.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
XtermColors.h