name: Stack version: 0.3.0 synopsis: Stack data structure description: A stack is a basic data structure that can be logically thought as linear structure represented by a real physical stack or pile, a structure where insertion and deletion of items takes place at one end called top of the stack. . <> homepage: https://en.wikipedia.org/wiki/Stack_(abstract_data_type) license: BSD3 license-file: LICENSE author: Robert Walker maintainer: rwlock404@yahoo.com copyright: 2016 Robert Walker category: Data Structures build-type: Simple cabal-version: >=1.10 library hs-source-dirs: src exposed-modules: Data.Stack, Control.Concurrent.STM.Stack, Control.Concurrent.Stack build-depends: base >= 4.7 && < 5, nats, stm default-language: Haskell2010 ghc-options: -Wall source-repository head type: git location: https://github.com/githubuser/Stack