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.

  1. package network-uri-template

    Library for parsing and expanding URI Templates, as per RFC 6570 As per the RFC,

    For example, the following URI Template includes a form-style
    parameter expression, as indicated by the "?" operator appearing
    before the variable names.
    
    
    http:/www.example.comfoo{?query,number}
    
    
    The expansion process for expressions beginning with the question-
    mark ("?") operator follows the same pattern as form-style interfaces
    on the World Wide Web:
    
    
    http:/www.example.comfoo{?query,number}
    _____________/
    |
    |
    For each defined variable in [ query, number ],
    substitute "?" if it is the first substitution or "&"
    thereafter, followed by the variable name, '=', and the
    variable's value.
    
    
    If the variables have the values
    
    
    query  := "mycelium"
    number := 100
    
    
    then the expansion of the above URI Template is
    
    
    http:/www.example.comfoo?query=mycelium&number=100
    
    
    Alternatively, if query is undefined, then the expansion would be
    
    
    http:/www.example.comfoo?number=100
    
    
    or if both variables are undefined, then it would be
    
    
    http:/www.example.comfoo
    
    This library handles expanding such templates.

  2. package network-wait

    Lightweight library for waiting on networked services to become available. Please see the README on GitHub at https://github.com/mbg/network-wait#readme

  3. package nfc

    libnfc bindings nfc is a set of bindings to libnfc

  4. package nicify-lib

    Pretty print the standard output of default `Show` instances. Pretty print the standard output of show for algebraic datatypes

  5. package nix-narinfo

    Parse and render .narinfo files Support for parsing and rendering Nix .narinfo files

  6. package no-recursion

    A GHC plugin to remove support for recursion General recursion can be the cause of a lot of problems. This removes recursion from GHC, allowing you to guarantee you’re using other mechanisms, like recursion schemes.

  7. package non-empty-text

    Non empty Data.Text type Typesafe thin wrapper around Data.Text to make impossible to be empty (to always hold at least on character)

  8. package nowdoc

    Here document without variable expansion like PHP Nowdoc Please see the README on GitHub at https://github.com/YoshikuniJujo/nowdoc#readme

  9. package nsis

    DSL for producing Windows Installer using NSIS. NSIS (Nullsoft Scriptable Install System, http://nsis.sourceforge.net/) is a tool that allows programmers to create installers for Windows. This library provides an alternative syntax for NSIS scripts, as an embedded Haskell language, removing much of the hard work in developing an install script. Simple NSIS installers should look mostly the same, complex ones should be significantly more maintainable.

  10. package numbers

    Various number types Instances of the numerical classes for a variety of different numbers: (computable) real numbers, arbitrary precision fixed numbers, arbitrary precision floating point numbers, differentiable numbers, symbolic numbers, natural numbers, interval arithmetic.

Page 221 of many | Previous | Next