Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hedgehog.Internal.State: Add instance Applicative Concrete #493

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## Version 1.2.1 (unreleased)

* Add `instance Applicative Concrete` ([#493][493], [@endgame][endgame])
* Export `Hedgehog.Internal.Seed.seed` ([#477][477], [@sol][sol])

## Version 1.2 (2022-08-28)
Expand Down Expand Up @@ -271,6 +272,8 @@
https://github.com/jhrcek


[493]:
https://github.com/hedgehogqa/haskell-hedgehog/pull/493
[462]:
https://github.com/hedgehogqa/haskell-hedgehog/pull/462
[461]:
Expand Down
5 changes: 5 additions & 0 deletions hedgehog/src/Hedgehog/Internal/State.hs
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,11 @@ newtype Concrete a where
Concrete :: a -> Concrete a
deriving (Eq, Ord, Functor, Foldable, Traversable)

-- | @since 1.2.1
instance Applicative Concrete where
pure = Concrete
Concrete f <*> Concrete x = Concrete $ f x

instance Show a => Show (Concrete a) where
showsPrec =
showsPrec1
Expand Down