unison-runtime-0.0.0
Safe HaskellSafe-Inferred
LanguageHaskell2010

Unison.Runtime.Foreign.Function

Documentation

class ForeignConvention a where Source #

Minimal complete definition

decodeVal, encodeVal

Methods

readAtIndex :: Stack -> Int -> IO a Source #

readsAt :: Stack -> Args -> IO a Source #

decodeVal :: Val -> IO a Source #

writeBack :: Stack -> a -> IO () Source #

encodeVal :: a -> Val Source #

Instances

Instances details
ForeignConvention SeekMode Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

ForeignConvention BufferMode Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

ForeignConvention IOMode Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

ForeignConvention Word16 Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

ForeignConvention Word32 Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

ForeignConvention Word64 Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

ForeignConvention Word8 Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

ForeignConvention POSIXTime Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

ForeignConvention Foreign Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

ForeignConvention Closure Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

ForeignConvention Val Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

ForeignConvention String Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

ForeignConvention () Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

Methods

readAtIndex :: Stack -> Int -> IO () Source #

readsAt :: Stack -> Args -> IO () Source #

decodeVal :: Val -> IO () Source #

writeBack :: Stack -> () -> IO () Source #

encodeVal :: () -> Val Source #

ForeignConvention Bool Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

ForeignConvention Char Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

ForeignConvention Double Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

ForeignConvention Int Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

BuiltinForeign b => ForeignConvention b Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

Methods

readAtIndex :: Stack -> Int -> IO b Source #

readsAt :: Stack -> Args -> IO b Source #

decodeVal :: Val -> IO b Source #

writeBack :: Stack -> b -> IO () Source #

encodeVal :: b -> Val Source #

ForeignConvention (Seq Val) Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

ForeignConvention a => ForeignConvention (Failure a) Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

ForeignConvention a => ForeignConvention (Maybe a) Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

ForeignConvention a => ForeignConvention [a] Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

Methods

readAtIndex :: Stack -> Int -> IO [a] Source #

readsAt :: Stack -> Args -> IO [a] Source #

decodeVal :: Val -> IO [a] Source #

writeBack :: Stack -> [a] -> IO () Source #

encodeVal :: [a] -> Val Source #

(ForeignConvention a, ForeignConvention b) => ForeignConvention (Either a b) Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

Methods

readAtIndex :: Stack -> Int -> IO (Either a b) Source #

readsAt :: Stack -> Args -> IO (Either a b) Source #

decodeVal :: Val -> IO (Either a b) Source #

writeBack :: Stack -> Either a b -> IO () Source #

encodeVal :: Either a b -> Val Source #

(ForeignConvention a, ForeignConvention b) => ForeignConvention (SeqView a b) Source # 
Instance details

Defined in Unison.Runtime.Machine.Primops

Methods

readAtIndex :: Stack -> Int -> IO (SeqView a b) Source #

readsAt :: Stack -> Args -> IO (SeqView a b) Source #

decodeVal :: Val -> IO (SeqView a b) Source #

writeBack :: Stack -> SeqView a b -> IO () Source #

encodeVal :: SeqView a b -> Val Source #

(ForeignConvention a, ForeignConvention b) => ForeignConvention (a, b) Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

Methods

readAtIndex :: Stack -> Int -> IO (a, b) Source #

readsAt :: Stack -> Args -> IO (a, b) Source #

decodeVal :: Val -> IO (a, b) Source #

writeBack :: Stack -> (a, b) -> IO () Source #

encodeVal :: (a, b) -> Val Source #

(ForeignConvention a, ForeignConvention b, ForeignConvention c) => ForeignConvention (a, b, c) Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

Methods

readAtIndex :: Stack -> Int -> IO (a, b, c) Source #

readsAt :: Stack -> Args -> IO (a, b, c) Source #

decodeVal :: Val -> IO (a, b, c) Source #

writeBack :: Stack -> (a, b, c) -> IO () Source #

encodeVal :: (a, b, c) -> Val Source #

(ForeignConvention a, ForeignConvention b, ForeignConvention c, ForeignConvention d) => ForeignConvention (a, b, c, d) Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

Methods

readAtIndex :: Stack -> Int -> IO (a, b, c, d) Source #

readsAt :: Stack -> Args -> IO (a, b, c, d) Source #

decodeVal :: Val -> IO (a, b, c, d) Source #

writeBack :: Stack -> (a, b, c, d) -> IO () Source #

encodeVal :: (a, b, c, d) -> Val Source #

(ForeignConvention a, ForeignConvention b, ForeignConvention c, ForeignConvention d, ForeignConvention e) => ForeignConvention (a, b, c, d, e) Source # 
Instance details

Defined in Unison.Runtime.Foreign.Function

Methods

readAtIndex :: Stack -> Int -> IO (a, b, c, d, e) Source #

readsAt :: Stack -> Args -> IO (a, b, c, d, e) Source #

decodeVal :: Val -> IO (a, b, c, d, e) Source #

writeBack :: Stack -> (a, b, c, d, e) -> IO () Source #

encodeVal :: (a, b, c, d, e) -> Val Source #