Skip to content
This repository was archived by the owner on Apr 20, 2018. It is now read-only.
This repository was archived by the owner on Apr 20, 2018. It is now read-only.

groupJoin throws exception if outer sequence contains elements without inner sequence #11

Description

@bman654

It is supposed to work as a left outer join, but instead it throws an error if the inner sequence has no matching elements to any of the outer elements.

This will throw an error:

Ix.Enumerable.fromArray([1])
    .groupJoin(
        Ix.Enumerable.empty(),
        function (v) { return v; },
        function (v) { return v; },
        function (o,i) { return o; })
    .toArray();

It should return [1].

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions