ParagonIE_Sodium_Core_ChaCha20_Ctx::offsetGet() public WP 1.0
{} It's a method of the class: ParagonIE_Sodium_Core_ChaCha20_Ctx{}
No Hooks.
Return
Mixed|null
. Null. Nothing.
Usage
$ParagonIE_Sodium_Core_ChaCha20_Ctx = new ParagonIE_Sodium_Core_ChaCha20_Ctx(); $ParagonIE_Sodium_Core_ChaCha20_Ctx->offsetGet( $offset );
- $offset(int) (required)
- -
Code of ParagonIE_Sodium_Core_ChaCha20_Ctx::offsetGet() ParagonIE Sodium Core ChaCha20 Ctx::offsetGet WP 5.7
public function offsetGet($offset)
{
return isset($this->container[$offset])
? $this->container[$offset]
: null;
}