• Iterate over all the edges in the graph

    Parameters

    • graph: Readonly<{
          vertices: IMapImmutable<string, Readonly<{
              id: string;
              out: readonly Readonly<{
                  id: string;
                  weight?: number;
              }>[];
          }>>;
      }>

    Returns Generator<Readonly<{
        id: string;
        weight?: number;
    }>, void, unknown>