listsafe-0.1.0.1: listsafe.cabal
name: listsafe
version: 0.1.0.1
synopsis: Safe wrappers for partial list functions, supporting MonadThrow.
description: Data.List includes a handful of partial functions that throw
uncatchable exceptions when given empty lists. This package
provides safe alternatives for such functions based on
MonadThrow which can provide a variety of failure
cases: Nothing, IOException, Left, etc.
homepage: https://github.com/ombocomp/listsafe
license: Apache-2.0
license-file: LICENSE.md
author: Janos Tapolczai
maintainer: janos.tapolczai@gmail.com
category: Data, List, Safe
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/ombocomp/listsafe.git
library
exposed-modules: Data.List.Safe
other-extensions: DeriveDataTypeable
build-depends: base >=4.7 && <5, exceptions >=0.4
default-language: Haskell2010