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