Graph.opSlice

Returns a slice of the requested type. This is either Graph!(T) or T itself, therefore returning an array of either

  1. E[] opSlice()
    class Graph(T)
    E[]
    opSlice
    (
    E
    )
    ()
    if (
    isGraphNodeType!(E) ||
    isGraphValueType!(E)
    )
  2. T[] opSlice()

Return Value

Type: E[]

an array of the requested type of children

Meta