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

@bman654

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].

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions