a function like "adjacent_vertices()"

Hi, folks,

My apology if it is a repeated questions! I briefly searched on the list for
"adjacent vertices", but found most of the threads are about adjacency
matrices.

Basically, I am looking for a function similar to "adjacent_vertices()"
defined in here:
http://www.boost.org/doc/libs/1_55_0/libs/graph/doc/AdjacencyGraph.html It
should simply return an iterator of all the adjacent vertices of a given
one. I couldn't find such a straightforward function in graph-tool library.
Do I have to use the Adjacent Matrix or some other fancy approaches?

Thank you very much for providing this awesome python wrapper, since the
python wrapper comes with BGL hasn't been updated for years.

Cheers,
Miao

OK, I am an idiot...

"Vertices.all_neighbours()" should do it.

Sorry about the hassle!

Miao