Skip to content

Comments

Fully outer join support#45

Merged
olirice merged 1 commit intomasterfrom
or/full_join
Jul 15, 2025
Merged

Fully outer join support#45
olirice merged 1 commit intomasterfrom
or/full_join

Conversation

@olirice
Copy link
Owner

@olirice olirice commented Jul 15, 2025

join_full

Join the iterable with another iterable using equality between *key* applied to self and *other_key* applied to *other* to identify matching entries
        Returns all entries from both iterables. When no matching entry is found, entries are paired with None
        Note: join_full loads both *self* and *other* into memory
        >>> flu(range(4)).join_full(range(2, 6)).to_list()
        [(0, None), (1, None), (2, 2), (3, 3), (None, 4), (None, 5)]

Also bumps the version to 1.2.3

@olirice olirice merged commit 12566ee into master Jul 15, 2025
6 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant