You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
perf(stable-api): inline dbl2num flonum encode for MRI stable versions (#734)
When the double is representable as a flonum tagged immediate, encode it
in pure Rust (rotate-left-3 + tag) without calling rb_float_new. Falls
back to rb_float_new for out-of-range doubles and on non-flonum builds.
Mirrors the existing flonum decode fast path in num2dbl.
Rust: 3 instructions C (DBL2NUM): 3 instructions
0 commit comments