feat[core]: Function Property: Argument modification

This commit is contained in:
vegowotenks 2025-08-17 18:19:00 +02:00
parent a38a20a546
commit c78ed4ac90
12 changed files with 138 additions and 3 deletions

View file

@ -0,0 +1,5 @@
{-# LANGUAGE Safe #-}
module Test.QuickCheck.Isomorphic (isomorphic) where
isomorphic :: Eq a => (t -> a) -> (t -> a) -> t -> Bool
isomorphic f g x = f x == g x