module Sequel::ToDot::DatasetMethods
Public Instance Methods
to_dot()
click to toggle source
Return a string that can be processed by the dot
program (included with graphviz) in order to see a visualization of the dataset’s abstract syntax tree.
# File lib/sequel/extensions/to_dot.rb 21 def to_dot 22 ToDot.output(self) 23 end