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