Metadata-Version: 1.1
Name: stackFifoLifo
Version: 0.0.1
Summary: Stack FIFO and LIFO
Home-page: http://github.com/oryxr/stackFifoLifo
Author: Pierre Lucas
Author-email: pierre.lucas@altie.fr
License: GPL
Description: Pile
        ====
        
        This project is stack *FIFO (First In - First Out)* or *LIFO (Last In - First Out)*
        
        Install
        -------
            pip install stackFifoLifo
            
        or
        
            python setup.py
            
        Example
        -------
            >>> from stackFifoLifo import Fifo
            >>> x=FifoStack()
            >>> x.copyStack()
            []
            >>> x.emptyStack()
            True
            >>> x.stack('A')
            >>> x.stack(5)
            >>> x.stack(['toto','tata','titi'])
            >>> x.copyStack()
            [['toto', 'tata', 'titi'], 5, 'A']
            >>> z=x.unstack()
            >>> z
            'A'
            >>> x.copyStack()
            [['toto', 'tata', 'titi'], 5]
            >>> x.size()
            2
            >>> x.element()
            5
            >>> x.copyStack()
            [['toto', 'tata', 'titi'], 5]
        
        This project is inspired by  [mesrecettespython](http://python.jpvweb.com/mesrecettespython/doku.php?id=gestion_piles).
        Thanks to Tyrtamos.
        
        
Platform: UNKNOWN
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Communications
