Description
Arbitrary Instances for Network Types.
Description
You can use network-arbitrary to provide Arbitrary instances for Network module types.
README.md
network-arbitrary
Homepage By Alex Brandt [email protected]
Description
You can use network-arbitrary to provide Arbitrary instances for Network module types.
Terms of use
You are free to use network-arbitrary without any conditions. See the [LICENSE] file for details.
How to use network-arbitrary
{-# LANGUAGE TypeApplications #-}
module main where
import Network.URI (URI)
import Network.URI.Arbitrary ()
main = generate (arbitrary @URI) >>= print
Documentation
- Hackage: Hackage project page for network-arbitrary
- The Design and Use of QuickCheck: An excellent guide to using QuickCheck
- LICENSE: The license governing use of network-arbitrary
- QuickCheck Arbitrary: QuickCheck's Arbitrary class documentation
- Hackage's Network Category: Hackage's Network category
- QuickCheck: QuickCheck's documentation
Getting Help
- GitHub Issues: Support requests, bug reports, and feature requests
How to Help
- Submit issues for problems or questions
- Submit pull requests for proposed changes.