neuroglancer.json_wrappers.Map[KV].pop(key: K/-> V
neuroglancer.json_wrappers.Map[KV].pop(
    
key: Kdefault: V/
-> V
neuroglancer.json_wrappers.Map[KV].pop[T](
    
key: Kdefault: T/
-> V | T

Removes and returns the mapped value associated with the specified key.

Returns:

The mapped value, or default if key is not specified and default is specified.

Raises:

KeyError – if the key is not present and default is not specified.