object\create()
Creates and returns an empty object (key-value map).
object\get(OBJECT, KEY)
Retrieves a value by a KEY from an OBJECT. Returns NULL if KEY is not set.
!!! note
Alternatively, it's possible to use *[]* syntax: `$value = $object['key'];`. As of v9.1.
object\set(OBJECT, KEY, VALUE)
Sets a value by a KEY.
!!! note
Alternatively, it's possible to use *[]* syntax: `$object['key'] = $value;`. As of v9.1.
!!! example
```
$object = object\create();
object\set($object, 'key', 'some-value');
```
object\clear(OBJECT, KEY)
Unsets a value by a KEY.
!!! example
```
object\clear($object, 'some-key');
```
object\has(OBJECT, KEY)
Checks whether an OBJECT has a value set by a KEY. Returns a boolean.
object\cloneDeep(OBJECT)
Deep clones an OBJECT. (as of v7.1)