Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use afoldl instead of tail recursion for tuples #53665

Merged
merged 1 commit into from
Mar 12, 2024
Merged

use afoldl instead of tail recursion for tuples #53665

merged 1 commit into from
Mar 12, 2024

Commits on Mar 12, 2024

  1. use afoldl instead of tail recursion for tuples

    It is easy to accidentally call these functions (they are used by vcat,
    which is syntax) with very long lists of values, causing inference to
    crash and take a long time. The `afoldl` function can handle that very
    well however, while naive recursion did not.
    
    Fixes #53585
    vtjnash committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    53de0c9 View commit details
    Browse the repository at this point in the history