ixfx
    Preparing search index...
    • Returns true if vertex only has the given list of vertices. Returns false early if the length of the list does not match up with vertex.out

      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