Репозиторий Sisyphus
Последнее обновление: 1 октября 2023 | Пакетов: 18631 | Посещений: 37044656
en ru br
Репозитории ALT

Группа :: Разработка/Haskell
Пакет: ghc8.6.4-safe

 Главная   Изменения   Спек   Патчи   Sources   Загрузить   Gear   Bugs and FR  Repocop 

Текущая версия: 0.3.19-alt2
Время сборки: 17 августа 2023, 17:43 ( 32.1 недели назад )
Размер архива: 15.86 Kb

Домашняя страница:   https://github.com/ndmitchell/safe#readme

Лицензия: BSD3
О пакете: Library of safe (exception free) functions
Описание:

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.

Текущий майнтейнер: Denis Smirnov

Список всех майнтейнеров, принимавших участие
в данной и/или предыдущих сборках пакета:

Список rpm-пакетов, предоставляемый данным srpm-пакетом:

  • ghc8.6.4-safe
ACL:
     
    дизайн и разработка: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
    текущий майнтейнер: Michael Shigorin