Merge branch 'main' into new-index-but-better

This commit is contained in:
HJfod 2024-02-22 02:05:12 +02:00
commit 1f6335ce17
3 changed files with 12 additions and 0 deletions
loader

View file

@ -93,8 +93,20 @@ namespace gd {
bool operator==(string const& other) const;
bool operator==(std::string_view const other) const;
bool operator==(char const* other) const {
return *this == std::string_view(other);
}
bool operator==(std::string const& other) const {
return *this == std::string_view(other);
}
std::strong_ordering operator<=>(string const& other) const;
std::strong_ordering operator<=>(std::string_view const other) const;
std::strong_ordering operator<=>(char const* other) const {
return *this <=> std::string_view(other);
}
std::strong_ordering operator<=>(std::string const& other) const {
return *this <=> std::string_view(other);
}
operator std::string() const;
operator std::string_view() const;

Binary file not shown.

Before

(image error) Size: 6.1 KiB

After

(image error) Size: 6.4 KiB

Binary file not shown.

Before

(image error) Size: 18 KiB

After

(image error) Size: 11 KiB