| 535 | static auto f32(float32_t x) -> Val { return Val(x); } |
| 536 | static auto f64(float64_t x) -> Val { return Val(x); } |
| 537 | static auto ref(own<Ref>&& x) -> Val { return Val(std::move(x)); } |
| 538 | template<class T> inline static auto make(T x) -> Val; |
| 539 | template<class T> inline static auto make(own<T>&& x) -> Val; |
| 540 |