mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 09:28:13 +00:00
AK: Add FlyString::to_lowercase() and LogStream operator<<(FlyString)
This commit is contained in:
parent
7f8dc347b5
commit
c4a6d6ae9f
6 changed files with 39 additions and 16 deletions
|
@ -26,6 +26,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <AK/Forward.h>
|
||||
#include <AK/Types.h>
|
||||
#include <AK/kstdio.h>
|
||||
|
||||
|
@ -38,9 +39,6 @@
|
|||
|
||||
namespace AK {
|
||||
|
||||
class String;
|
||||
class StringView;
|
||||
|
||||
class LogStream {
|
||||
public:
|
||||
LogStream()
|
||||
|
@ -95,6 +93,7 @@ inline const LogStream& operator<<(const LogStream& stream, const char* value)
|
|||
return stream;
|
||||
}
|
||||
|
||||
const LogStream& operator<<(const LogStream&, const FlyString&);
|
||||
const LogStream& operator<<(const LogStream&, const String&);
|
||||
const LogStream& operator<<(const LogStream&, const StringView&);
|
||||
const LogStream& operator<<(const LogStream&, int);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue