.. _Arrays-removeEmpty: ============================================== Arrays::removeEmpty() ============================================== \\nn\\t3::Arrays()->removeEmpty(); ---------------------------------------------- Remove empty values from an array. .. code-block:: php $clean = \nn\t3::Arrays( $arr1 )->removeEmpty(); | ``@return array`` Source Code ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .. code-block:: php public function removeEmpty() { return $this->merge( [], $this->toArray() ); }