Rename kym::value::as_* functions to kym::value::to_*
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kayomn 2023-02-22 21:03:24 +00:00
parent cf5ca23f94
commit 02d4d56f35
2 changed files with 4 additions and 4 deletions

View File

@ -51,7 +51,7 @@ export namespace kym {
this->type = value_type::vector3;
}
coral::optional<coral::i64> as_integer() const {
coral::optional<coral::i64> to_integer() const {
if (this->type == value_type::integer)
return (*reinterpret_cast<coral::i64 const *>(&this->data));

View File

@ -39,7 +39,7 @@ extern "C" int main(int argc, char const * const * argv) {
vm.with_object(vm.compile(script_source.as_slice().as_chars()), [&](kym::bound_object & script) {
vm.with_object(script.call({}), [&](kym::bound_object & config) {
constexpr auto as_u16 = [](coral::i64 value) -> coral::optional<coral::i16> {
constexpr auto to_u16 = [](coral::i64 value) -> coral::optional<coral::i16> {
if ((value >= 0) && (value <= coral::u16_max))
return static_cast<coral::u16>(value);
@ -47,13 +47,13 @@ extern "C" int main(int argc, char const * const * argv) {
};
coral::u16 const width{config.get_field("width").
as_integer().map(as_u16).value_or(0)};
to_integer().map(to_u16).value_or(0)};
if (width == 0) return system.log(app::log_level::error,
"failed to decode `width` property of config");
coral::u16 const height{config.get_field("height").
as_integer().map(as_u16).value_or(0)};
to_integer().map(to_u16).value_or(0)};
if (height == 0) return system.log(app::log_level::error,
"failed to decode `height` property of config");