public function each(callable $callable) { foreach ($this->storage as $key => $value) { $callable($key, $value); } }