Idris2Doc : Graphics.DOT

Graphics.DOT

(source)

Reexports

importpublic Graphics.DOT.AST
importpublic Graphics.DOT.Utils
importpublic Graphics.DOT.Parser
importpublic Graphics.DOT.Interfaces

Definitions

dataDOTError : Type
  The types of errors that can occur when processing a DOT/.gv file, combined
with the respective error message.

Totality: total
Visibility: public export
Constructors:
FError : String->DOTError
  An error occurred when trying to read the file.
ParseError : String->DOTError
  Something's wrong with the structure of the DOT in the file.

Hint: 
ShowDOTError
readDOTFile : HasIOio=>String->io (EitherDOTErrorGraph)
  Given a file name, open it and lex and parse the DOT in it, returning the
`Graph` node which is the root of the AST.

@ fname the file name to read

Visibility: export