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 indexed-traversable for type-checking list literals #2423

Merged
merged 1 commit into from
Jun 16, 2022

Commits on Jun 14, 2022

  1. Use indexed-traversable for type-checking list literals

    itraverse_ for Seq is implemented via Data.Sequence.foldMapWithIndex
    and manages to perform the traversal in one pass.
    The previous implementation involved first mapping over the Seq and
    then reducing the resulting Seq.
    
    indexed-traversable is used in aeson, so it's already a transitive
    dependency.
    sjakobi committed Jun 14, 2022
    Configuration menu
    Copy the full SHA
    1a757ab View commit details
    Browse the repository at this point in the history