hinterface-0.1.0.0: Initial project template from stack

Safe HaskellNone
LanguageHaskell2010

Language.Erlang.Term

Documentation

data Term Source #

Instances

Eq Term Source # 

Methods

(==) :: Term -> Term -> Bool #

(/=) :: Term -> Term -> Bool #

Ord Term Source # 

Methods

compare :: Term -> Term -> Ordering #

(<) :: Term -> Term -> Bool #

(<=) :: Term -> Term -> Bool #

(>) :: Term -> Term -> Bool #

(>=) :: Term -> Term -> Bool #

max :: Term -> Term -> Term #

min :: Term -> Term -> Term #

Show Term Source # 

Methods

showsPrec :: Int -> Term -> ShowS #

show :: Term -> String #

showList :: [Term] -> ShowS #

IsString Term Source # 

Methods

fromString :: String -> Term #

Binary Term Source # 

Methods

put :: Term -> Put #

get :: Get Term #

putList :: [Term] -> Put #

class ToTerm a where Source #

Minimal complete definition

toTerm

Methods

toTerm :: a -> Term Source #

class FromTerm a where Source #

Minimal complete definition

fromTerm

Methods

fromTerm :: Term -> Maybe a Source #