Hoogle Search
Within LTS Haskell 24.34 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
Parse strings into words, like a shell would See https://codeberg.org/pbrisbin/hs-shellwords#readme
-
Clean up the formatting of 'show' output Clean up the formatting of show output
-
Rounding rationals to significant digits and decimal places. The round function from the prelude returns an integer. The standard librarys of C and C++ have round functions that return floating point numbers. Rounding in this library takes and returns rationals and can round to a number of significant digits or a number of decimal places.
-
A minimalist web framework for the WAI server interface Simple is "framework-less" web framework for Haskell web applications based on the WAI server interface (e.g. for use with the warp server). Simple does not enforce a particular structure or paradigm for web applications. Rather, Simple contains tools to help you create your own patterns (or re-create existing ones). Simple is minimalist, providing a lightweight base - the most basic Simple app is little more than a WAI Application with some routing logic. Everything else (e.g. authentication, controllers, persistence, caching etc') is provided in composable units, so you can include only the ones you need in your app, and easily replace with your own components. To get started, create an app skeleton with the smpl utility:
$ cabal install simple $ smpl create my_app_name $ cd my_app_name $ smpl
See Web.Simple for a more detailed introduction. -
Cabal file wrapper library Find and read .cabal files, and a Cabal dependency compatibility layer.
package
simple-media-timestamp A very simple timestamp type. A very simple timestamp type, could be used for subtitles or video playback.
-
Simple commandline text prompt functions The library provides prompt functions for reading user input: for example prompt returns the input given, promptEnter expects only Enter, and yesNo asks for confirmation.
-
Three-dimensional vectors of doubles with basic operations Simple three-dimensional vectors of doubles with basic vector and matrix operations, supporting Data.Vector.Unboxed and Data.Vector.Storable.
-
Unary natural numbers relying on the singletons infrastructure. Unary natural number relying on the singletons infrastructure. More information about the general usage of singletons can be found on the singletons github page.
-
Presburger Arithmetic Solver for GHC Type-level natural numbers with Singletons package. The singletons-presburger plugin augments GHC type-system with Presburger Arithmetic Solver for Type-level natural numbers, with integration with singletons package. . You can use by adding this package to dependencies and add the following pragma to the head of .hs files: . > OPTIONS_GHC -fplugin Data.Singletons.TypeNats.Presburger