Skip to content
Chris Petersen edited this page Oct 16, 2014 · 1 revision

This function returns #t if the argument is a graph, otherwise #f.

Parameter Description
g graph context

Example

(define g (graph-new 100 100))
(graph? g)
#t
(graph? "g")
#f
Clone this wiki locally