12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- /**
- * A class for creating the stack (LIFO) data structure.
- * A modification of the Staple_Data_LinkedList class.
- *
- * @author Ironpilot
- * @copyright Copywrite (c) 2011, STAPLE CODE
- *
- * This file is part of the STAPLE Framework.
- *
- * The STAPLE Framework is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by the
- * Free Software Foundation, either version 3 of the License, or (at your option)
- * any later version.
- *
- * The STAPLE Framework is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
- * more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with the STAPLE Framework. If not, see <http://www.gnu.org/licenses/>.
- */
- class Staple_Data_Stack extends Staple_Data_LinkedList
- {
- /**
- * Stack push function
- * Alias of Staple_Data_LinkedList::add()
- * @param mixed $data
- */
- public function push($data)
- {
- $this->add($data);
- return $this;
- }
-
- /**
- * Stack pop function.
- * Alias of Staple_Data_LinkedList::remove()
- * @return mixed
- */
- public function pop()
- {
- return $this->remove();
- }
- }
|