ParagonIE_Sodium_Core_Curve25519_Fe::offsetGet() –

You appear to be a bot. Output may be restricted

Description

Usage

$int = ParagonIE_Sodium_Core_Curve25519_Fe::offsetGet( $offset );

Parameters

$offset
( int ) required

Returns

int

Source

File name: wordpress/wp-includes/sodium_compat/src/Core/Curve25519/Fe.php
Lines:

1 to 7 of 7
    public function offsetGet($offset)
    {
        if (!isset($this->container[$offset])) {
            $this->container[$offset] = 0;
        }
        return (int) ($this->container[$offset]);
    }
 

 View on GitHub View on Trac