mirror of
https://github.com/php/php-src.git
synced 2024-12-16 13:26:19 +08:00
34 lines
705 B
PHP
34 lines
705 B
PHP
<?php
|
|
|
|
final class WeakReference {
|
|
public function __construct();
|
|
|
|
public static function create(): WeakReference;
|
|
|
|
public function get(): ?object;
|
|
}
|
|
|
|
final class WeakMap implements ArrayAccess, Countable, Traversable {
|
|
//public function __construct();
|
|
|
|
/**
|
|
* @param object $object
|
|
* @return mixed
|
|
*/
|
|
public function offsetGet($object);
|
|
|
|
/**
|
|
* @param object $object
|
|
* @param mixed $value
|
|
*/
|
|
public function offsetSet($object, $value): void;
|
|
|
|
/** @param object $object */
|
|
public function offsetExists($object): bool;
|
|
|
|
/** @param object $object */
|
|
public function offsetUnset($object): void;
|
|
|
|
public function count(): int;
|
|
}
|