Example #1
0
 /**
  *
  * @param blaze\lang\Float|float $value
  * @return float
  */
 public static function asNative($value)
 {
     return (double) parent::asNative($value);
 }
Example #2
0
 /**
  *
  * @param blaze\lang\Integer|int $value
  * @return int
  */
 public static function asNative($value)
 {
     return (int) parent::asNative($value) & 0xffff;
 }