zip(*iterables) --> zip object
tfg.geometry.convolution.graph_convolution.zip(
*args, **kwargs
)
Return a zip object whose .next() method returns a tuple where the i-th element comes from the i-th iterable argument. The .next() method continues until the shortest iterable in the argument sequence is exhausted and then it raises StopIteration.
Methods
__iter__
__iter__()
Implement iter(self).