[libcxx-commits] [libcxx] [libc++] Implement ranges::iota (PR #68494)

nicole mazzuca via libcxx-commits libcxx-commits at lists.llvm.org
Thu Jul 25 10:09:38 PDT 2024


================
@@ -1587,6 +1588,10 @@ module std_private_numeric_pstl                     [system] {
   export *
 }
 module std_private_numeric_reduce                   [system] { header "__numeric/reduce.h" }
+module std_private_numeric_ranges_iota              [system] {
+  header "__numeric/ranges_iota.h"
+  export std_private_algorithm_out_value_result
----------------
strega-nil wrote:

It is not standard practice here to re-export the `*_result` types in the modules that use them; see, for example, `std_private_algorithm_ranges_for_each` not re-exporting `in_fun_result`.

https://github.com/llvm/llvm-project/pull/68494


More information about the libcxx-commits mailing list