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