language-c-quote-0.12.2: C/CUDA/OpenCL/Objective-C quasiquoting library.

Copyright(c) 2006-2011 Harvard University
(c) 2011-2013 Geoffrey Mainland
: (c) 2013-2015 Drexel University
LicenseBSD-style
Maintainermainland@drexel.edu
Safe HaskellNone
LanguageHaskell98

Language.C.Quote.OpenCL

Description

 
Synopsis

Documentation

class ToIdent a where #

An instance of ToIndent can be converted to a Id.

Methods

toIdent :: a -> SrcLoc -> Id #

Instances
ToIdent String # 
Instance details

Defined in Language.C.Quote.Base

Methods

toIdent :: String -> SrcLoc -> Id #

ToIdent Id # 
Instance details

Defined in Language.C.Quote.Base

Methods

toIdent :: Id -> SrcLoc -> Id #

ToIdent (SrcLoc -> Id) # 
Instance details

Defined in Language.C.Quote.Base

Methods

toIdent :: (SrcLoc -> Id) -> SrcLoc -> Id #

class ToConst a where #

An instance of ToConst can be converted to a Const.

Methods

toConst :: a -> SrcLoc -> Const #

Instances
ToConst Char # 
Instance details

Defined in Language.C.Quote.Base

Methods

toConst :: Char -> SrcLoc -> Const #

ToConst Double # 
Instance details

Defined in Language.C.Quote.Base

Methods

toConst :: Double -> SrcLoc -> Const #

ToConst Float # 
Instance details

Defined in Language.C.Quote.Base

Methods

toConst :: Float -> SrcLoc -> Const #

ToConst Int # 
Instance details

Defined in Language.C.Quote.Base

Methods

toConst :: Int -> SrcLoc -> Const #

ToConst Int8 # 
Instance details

Defined in Language.C.Quote.Base

Methods

toConst :: Int8 -> SrcLoc -> Const #

ToConst Int16 # 
Instance details

Defined in Language.C.Quote.Base

Methods

toConst :: Int16 -> SrcLoc -> Const #

ToConst Int32 # 
Instance details

Defined in Language.C.Quote.Base

Methods

toConst :: Int32 -> SrcLoc -> Const #

ToConst Int64 # 
Instance details

Defined in Language.C.Quote.Base

Methods

toConst :: Int64 -> SrcLoc -> Const #

ToConst Integer # 
Instance details

Defined in Language.C.Quote.Base

Methods

toConst :: Integer -> SrcLoc -> Const #

ToConst Rational # 
Instance details

Defined in Language.C.Quote.Base

Methods

toConst :: Rational -> SrcLoc -> Const #

ToConst Word # 
Instance details

Defined in Language.C.Quote.Base

Methods

toConst :: Word -> SrcLoc -> Const #

ToConst Word8 # 
Instance details

Defined in Language.C.Quote.Base

Methods

toConst :: Word8 -> SrcLoc -> Const #

ToConst Word16 # 
Instance details

Defined in Language.C.Quote.Base

Methods

toConst :: Word16 -> SrcLoc -> Const #

ToConst Word32 # 
Instance details

Defined in Language.C.Quote.Base

Methods

toConst :: Word32 -> SrcLoc -> Const #

ToConst Word64 # 
Instance details

Defined in Language.C.Quote.Base

Methods

toConst :: Word64 -> SrcLoc -> Const #

ToConst String # 
Instance details

Defined in Language.C.Quote.Base

Methods

toConst :: String -> SrcLoc -> Const #

ToConst Const # 
Instance details

Defined in Language.C.Quote.Base

Methods

toConst :: Const -> SrcLoc -> Const #

class ToExp a where #

An instance of ToExp can be converted to a Stm.

Methods

toExp :: a -> SrcLoc -> Exp #

Instances
ToExp Char # 
Instance details

Defined in Language.C.Quote.Base

Methods

toExp :: Char -> SrcLoc -> Exp #

ToExp Double # 
Instance details

Defined in Language.C.Quote.Base

Methods

toExp :: Double -> SrcLoc -> Exp #

ToExp Float # 
Instance details

Defined in Language.C.Quote.Base

Methods

toExp :: Float -> SrcLoc -> Exp #

ToExp Int # 
Instance details

Defined in Language.C.Quote.Base

Methods

toExp :: Int -> SrcLoc -> Exp #

ToExp Int8 # 
Instance details

Defined in Language.C.Quote.Base

Methods

toExp :: Int8 -> SrcLoc -> Exp #

ToExp Int16 # 
Instance details

Defined in Language.C.Quote.Base

Methods

toExp :: Int16 -> SrcLoc -> Exp #

ToExp Int32 # 
Instance details

Defined in Language.C.Quote.Base

Methods

toExp :: Int32 -> SrcLoc -> Exp #

ToExp Int64 # 
Instance details

Defined in Language.C.Quote.Base

Methods

toExp :: Int64 -> SrcLoc -> Exp #

ToExp Integer # 
Instance details

Defined in Language.C.Quote.Base

Methods

toExp :: Integer -> SrcLoc -> Exp #

ToExp Rational # 
Instance details

Defined in Language.C.Quote.Base

Methods

toExp :: Rational -> SrcLoc -> Exp #

ToExp Word # 
Instance details

Defined in Language.C.Quote.Base

Methods

toExp :: Word -> SrcLoc -> Exp #

ToExp Word8 # 
Instance details

Defined in Language.C.Quote.Base

Methods

toExp :: Word8 -> SrcLoc -> Exp #

ToExp Word16 # 
Instance details

Defined in Language.C.Quote.Base

Methods

toExp :: Word16 -> SrcLoc -> Exp #

ToExp Word32 # 
Instance details

Defined in Language.C.Quote.Base

Methods

toExp :: Word32 -> SrcLoc -> Exp #

ToExp Word64 # 
Instance details

Defined in Language.C.Quote.Base

Methods

toExp :: Word64 -> SrcLoc -> Exp #

ToExp String # 
Instance details

Defined in Language.C.Quote.Base

Methods

toExp :: String -> SrcLoc -> Exp #

ToExp Exp # 
Instance details

Defined in Language.C.Quote.Base

Methods

toExp :: Exp -> SrcLoc -> Exp #