{-# LANGUAGE DerivingStrategies #-} {-# LANGUAGE GeneralizedNewtypeDeriving #-} -- | The Binaryen index type. -- -- See -- for API documentation. -- -- This module is intended to be imported qualified. module Binaryen.Index where import Data.Word (Word32) import Foreign (Storable) newtype Index = Index Word32 deriving newtype ( Enum, Eq, Integral, Num, Ord, Real, Show, Storable )