module RGL::MutableGraph

def cycles_with_vertex(vertex)

Returns:
  • (Array[Array]) -
def cycles_with_vertex(vertex)
  cycles_with_vertex_helper(vertex, vertex, [])
end