ixfx
    Preparing search index...
    • Returns true if vertex has an outgoing connection to the given vertex.

      Parameters

      • graph: Readonly
      • vertex:
            | string
            | Readonly<
                {
                    id: string;
                    out: readonly Readonly<{ id: string; weight?: number }>[];
                },
            >
      • outIdOrVertex:
            | string
            | Readonly<
                {
                    id: string;
                    out: readonly Readonly<{ id: string; weight?: number }>[];
                },
            >

      Returns boolean