inline-r-0.9.1: Seamlessly call R from Haskell and vice versa. No FFI required.
Data.Vector.SEXP.Base
Description
Synopsis
type family ElemRep s (a :: SEXPTYPE) where ... Source #
Function from R types to the types of the representations of each element in the vector.
Equations
type E s a b = ElemRep s a ~ b Source #
ElemRep in the form of a relation, for convenience.
ElemRep
type VECTOR s ty a = (Storable a, IsVector ty, SingI ty, ElemRep s ty ~ a) Source #
Constraint synonym for all operations on vectors.
type SVECTOR ty a = (Storable a, IsVector ty, SingI ty, ElemRep V ty ~ a) Source #