inline-r-0.9.1: Seamlessly call R from Haskell and vice versa. No FFI required.

Copyright(C) 2013 Amgen Inc.
Safe HaskellNone
LanguageHaskell2010

Data.Vector.SEXP.Base

Description

 

Synopsis

Documentation

type family ElemRep s (a :: SEXPTYPE) where ... Source #

Function from R types to the types of the representations of each element in the vector.

type E s a b = ElemRep s a ~ b Source #

ElemRep in the form of a relation, for convenience.

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 #

Constraint synonym for all operations on vectors.