ParagonIE_Sodium_Core32_Curve25519_Fe::offsetSet()
[ReturnTypeWillChange]{} Это метод класса: ParagonIE_Sodium_Core32_Curve25519_Fe{}
Хуков нет.
Возвращает
null
. Ничего.
Использование
$ParagonIE_Sodium_Core32_Curve25519_Fe = new ParagonIE_Sodium_Core32_Curve25519_Fe(); $ParagonIE_Sodium_Core32_Curve25519_Fe->offsetSet( $offset, $value );
- $offset (обязательный)
- -
- $value (обязательный)
- -
Код ParagonIE_Sodium_Core32_Curve25519_Fe::offsetSet() ParagonIE Sodium Core32 Curve25519 Fe::offsetSet WP 6.0
public function offsetSet($offset, $value) { if (!($value instanceof ParagonIE_Sodium_Core32_Int32)) { throw new InvalidArgumentException('Expected an instance of ParagonIE_Sodium_Core32_Int32'); } if (is_null($offset)) { $this->container[] = $value; } else { ParagonIE_Sodium_Core32_Util::declareScalarType($offset, 'int', 1); $this->container[(int) $offset] = $value; } }