From a6386bdabed83d87e5d1746666652108b6b2682d Mon Sep 17 00:00:00 2001
From: Mike Pall
+Note: this is the only place where creating a boxed scalar number type is +actually useful. Never use ffi.new("int"), ffi.new("float") +etc. anywhere else! +
++Ditto for ffi.cast(). Explicitly boxing scalars does not +improve performance or force int or float arithmetic! It +just adds costly boxing, unboxing and conversions steps. And it may lead +to surprise results, because +cdata arithmetic on scalar numbers +is always performed on 64 bit integers. +
-- cgit v1.2.3-55-g6feb