Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8492587
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T22:45:40+00:00 2026-06-10T22:45:40+00:00

I need a tricky thing in a C++ 2011 code. Currently, I have a

  • 0

I need a tricky thing in a C++ 2011 code.
Currently, I have a metafunction of this kind :

template<unsigned int N, unsigned int M> 
static constexpr unsigned int myFunction()

This function can generate number based on N and M.

I would like to write a metafunction with input N and M, and that will recursively construct a variadic template by decrementing M. For example, by calling this function with M = 3, It will construct a variadic template called List equal to :

List... = myFunction<N, 3>, myFunction<N, 2>, myFunction<N, 1>, myFunction<N, 0>

How to do that (if it is possible of course) ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T22:45:41+00:00Added an answer on June 10, 2026 at 10:45 pm

    It’s probably simplest to use an existing tuple pack generator:

    // Idiomatic tuple pack generator using successor method
    template<int... I> struct tuple_pack {
        using succ = tuple_pack<I..., sizeof...(I)>;
    };
    template<int N> struct make_tuple_pack {
        using type = typename make_tuple_pack<N - 1>::type::succ;
    };
    template<> struct make_tuple_pack<0> {
        using type = tuple_pack<>;
    };
    

    Now we can apply the tuple pack generator, delegating to an implementation function:

    template<int N, int M, typename T> struct foo_impl {};
    template<int N, int M, int... I> struct foo_impl<N, M, tuple_pack<I...>> {
        static void foo() {
            int arr[M] = { myFunction<N, M - I>()... };
        }
    };
    template<int N, int M> void foo() {
        foo_impl<N, M, typename make_tuple_pack<M>::type>::foo();
    }
    

    If you prefer function parameter inference to class template specialisation this could also be written as:

    template<int N, int M, int... I> void foo_impl(tuple_pack<I...>) {
        int arr[M] = { myFunction<N, M - I>()... };
    }
    template<int N, int M> void foo() {
        foo_impl<N, M>(typename make_tuple_pack<M>::type{});
    }
    

    I had to specify the array size as int arr[M]; not sure whether that’s required by the standard for pack expansion initializers or whether it’s a bug in gcc; either way it’s no big hassle.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to have custom checkboxes which wasn't that tricky. I made checkbox_selector to
Need some regular expressions help. So far I have my code working to allow
I don't want code, just need help finding where to start this project. I
Im looking for a bit tricky thing :) I have a multidimensional array like:
It looks easy, but I found the implementation tricky. I need that for a
Need to apply a filter to a file like this: TUPAC_0006:1:1:2554:2356#0/1 0 * 0
Need a map reduce function by mongo in php This my mongo structure [_id]
Need just a push in the right direction with this. I'm building a multi-language
Need some help... I have jasperserver 4.1 installed on my ubuntu. It runs via
Need help with a query that I wrote: I have three tables Company id

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.