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

Add zip_map adaptor #184

Merged
merged 7 commits into from
Aug 5, 2024
Merged

Add zip_map adaptor #184

merged 7 commits into from
Aug 5, 2024

Commits on Apr 13, 2024

  1. Add zip_map adaptor

    The element type of flux::cartesian_product, cartesian_power and adjacent is a tuple of
     the element type(s) of the underlying sequences. These three adaptors also provide
      *_map versions, which take an n-ary function and call it directly with the underlying
      elements. This is to avoid forming a tuple and then immediately destructuring it, as
      would happen in a subsequent call to map(unpack(func)).
    
     This commit adds the *_map version for the zip adaptor
    isaacy2012 committed Apr 13, 2024
    Configuration menu
    Copy the full SHA
    8af8960 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0d795de View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2024

  1. Configuration menu
    Copy the full SHA
    5d592a7 View commit details
    Browse the repository at this point in the history
  2. Move is_object_v requirement of flux::empty to data function

    flux::empty<T> now supports any T, while the data() function requires that T satisfies std::is_object_v<T>
    isaacy2012 committed Jul 21, 2024
    Configuration menu
    Copy the full SHA
    deb3066 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2ee4975 View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2024

  1. Configuration menu
    Copy the full SHA
    3c60bb5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6cefba1 View commit details
    Browse the repository at this point in the history