mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-16 06:55:04 -04:00
Merge branch 'main' into new-index-but-better
This commit is contained in:
commit
1f6335ce17
3 changed files with 12 additions and 0 deletions
loader
|
@ -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 ![]() ![]() |
Loading…
Add table
Reference in a new issue