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

5
src/Data/Enum/Util.hs Normal file
View file

@ -0,0 +1,5 @@
{-# LANGUAGE Safe #-}
module Data.Enum.Util (enumerate) where
enumerate :: (Enum a, Bounded a) => [a]
enumerate = [minBound .. maxBound]