Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37328836
en ru br
ALT Linux repos
S:0.3.19-alt2

Group :: Development/Haskell
RPM: ghc8.6.4-safe

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 

Current version: 0.3.19-alt2
Build date: 17 august 2023, 17:43 ( 34.7 weeks ago )
Size: 15.86 Kb

Home page:   https://github.com/ndmitchell/safe#readme

License: BSD3
Summary: Library of safe (exception free) functions
Description:

A library wrapping @Prelude@/@Data.List@ functions that can throw
exceptions, such as @head@ and @!!@. Each unsafe function has up to four
variants, e.g. with @tail@:

* @tail :: [a] -> [a]@, raises an error on @tail []@.

* @tailMay :: [a] -> /Maybe/ [a]@, turns errors into @Nothing@.

* @tailDef :: /[a]/ -> [a] -> [a]@, takes a default to return on errors.

* @tailNote :: /String/ -> [a] -> [a]@, takes an extra argument which
supplements the error message.

* @tailSafe :: [a] -> [a]@, returns some sensible default if possible, @[]@
in the case of @tail@.

This package is divided into three modules:

* "Safe" contains safe variants of @Prelude@ and @Data.List@ functions.

* "Safe.Foldable" contains safe variants of @Foldable@ functions.

* "Safe.Exact" creates crashing versions of functions like @zip@ (errors if
the lists are not equal) and @take@ (errors if there are not enough
elements), then wraps them to provide safe variants.

Current maintainer: Denis Smirnov

List of contributors

List of rpms provided by this srpm:

  • ghc8.6.4-safe
ACL:
     
    design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
    current maintainer: Michael Shigorin