Syntax Syntax
Return Return
(int)
Source Source
File: wp-includes/sodium_compat/src/Core32/Int64.php
public function toInt()
{
return (int) (
(($this->limbs[2] & 0xffff) << 16)
|
($this->limbs[3] & 0xffff)
);
}