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

Copyright(C) 2013 Amgen Inc.
Safe HaskellNone
LanguageHaskell2010

H.Prelude.Interactive

Contents

Description

This class is not meant to be imported in any other circumstance than in a GHCi session.

Synopsis

Documentation

module H.Prelude

class PrintR a where Source #

Minimal complete definition

printR

Methods

printR :: MonadR m => a -> m () Source #

Instances

PrintR (SomeSEXP s) Source # 

Methods

printR :: MonadR m => SomeSEXP s -> m () Source #

PrintR (SEXP s a) Source # 

Methods

printR :: MonadR m => SEXP s a -> m () Source #

p :: (MonadR m, PrintR a) => m a -> m () Source #

A form of the printR function that is more convenient in an interactive session.

printQuote :: (MonadR m, PrintR a) => m a -> m () Source #

Deprecated: Use p instead.

A form of the printR function that is more convenient in an interactive session.

Orphan instances

MonadR IO Source # 

Associated Types

data ExecContext (IO :: * -> *) :: * Source #