TomlTable_get -> TomlTable_tryGet
This commit is contained in:
@@ -134,7 +134,7 @@ static inline void TomlTable_set(TomlTable* self, str key, TomlValue value){
|
||||
HashMap_pushOrUpdate(self, key, &value);
|
||||
}
|
||||
|
||||
static inline TomlValue* TomlTable_get(const TomlTable* self, const str key){
|
||||
static inline NULLABLE(TomlValue*) TomlTable_tryGet(const TomlTable* self, const str key){
|
||||
return HashMap_tryGetPtr(self, key);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user