From 17733f00e8e26765e6d39ab9dff45a0a95938197 Mon Sep 17 00:00:00 2001 From: ud2 Date: Sat, 20 Sep 2025 06:06:06 +0800 Subject: [PATCH] feat: implement `Rawable` for floating-point types --- src/array_buffer.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/array_buffer.rs b/src/array_buffer.rs index 4c9f849b22..9e9ccb217d 100644 --- a/src/array_buffer.rs +++ b/src/array_buffer.rs @@ -297,6 +297,8 @@ rawable!(i8); rawable!(i16); rawable!(i32); rawable!(i64); +rawable!(f32); +rawable!(f64); impl sealed::Rawable for Box where