Skip to main content

Module flatmap

Module flatmap 

Source
Expand description

FlatMap Steps

Steps that expand traversers 1:N (one input produces N outputs).

§Steps

  • out(): Follow outgoing edges
  • in(): Follow incoming edges
  • both(): Follow both directions
  • outE(): Get outgoing edges
  • inE(): Get incoming edges
  • bothE(): Get all adjacent edges
  • outV(), inV(), bothV(), otherV(): Edge vertex accessors

Structs§

EdgeStep
Edge step - get edges from current element
EdgeVertexStep
Edge vertex accessor - gets vertex from edge
PropertiesStep
Properties step - get all properties as map
VertexStep
Generic vertex step - traverses edges to adjacent vertices

Enums§

Direction
Direction for edge traversal

Traits§

FlatMapStep
Trait for flatmap steps (1:N expansion)

Type Aliases§

BothStep
Both step - convenience alias
InStep
In step - convenience alias
OutStep
Out step - convenience alias