mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
7 lines
191 B
Agda
7 lines
191 B
Agda
module FFI.Data.Vector where
|
|
|
|
{-# FOREIGN GHC import qualified Data.Vector #-}
|
|
|
|
postulate Vector : Set → Set
|
|
{-# POLARITY Vector ++ #-}
|
|
{-# COMPILE GHC Vector = type Data.Vector.Vector #-}
|