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

  • SEARCH
  • Home
  • 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 6380637
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T02:17:34+00:00 2026-05-25T02:17:34+00:00

I was wondering if its possible to make the following answer more generic, in

  • 0

I was wondering if its possible to make the following answer more generic, in the sense that the type of the array be templated instead of just unsigned:

I’ve enclosed the whole thing in a struct like so:

template<typename ArrayType>
struct Array
{
template<ArrayType... args> struct ArrayHolder {
    static const ArrayType data[sizeof...(args)];
};

template<ArrayType... args> 
const ArrayType ArrayHolder<args...>::data[sizeof...(args)] = { args... };

template<size_t N, template<size_t> class F, ArrayType... args> 
struct generate_array_impl {
    typedef typename generate_array_impl<N-1, F, F<N>::value, args...>::result result;
};

template<template<size_t> class F, ArrayType... args> 
struct generate_array_impl<0, F, args...> {
    typedef ArrayHolder<F<0>::value, args...> result;
};

template<size_t N, template<size_t> class F> 
struct generate_array {
    typedef typename generate_array_impl<N-1, F>::result result;
};
};

but I get the following errors:

c++-4.6 -std=c++0x -o test test.cpp
test.cpp:49:17: error: specializing member ‘Array<ArrayType>::ArrayHolder<args>::data’ requires ‘template<>’ syntax
  • 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-05-25T02:17:35+00:00Added an answer on May 25, 2026 at 2:17 am

    It helps if you indent the struct. The problem is that you are defining the data static member variable inside the Array struct. But it should be at namespace scope:

    template<typename ArrayType>
    struct Array
    {
        template<ArrayType... args> struct ArrayHolder {
            static const ArrayType data[sizeof...(args)];
        };
    
        template<size_t N, template<size_t> class F, ArrayType... args> 
            struct generate_array_impl {
                typedef typename generate_array_impl<N-1, F, F<N>::value, args...>::result result;
            };
    
        template<template<size_t> class F, ArrayType... args> 
            struct generate_array_impl<0, F, args...> {
                typedef ArrayHolder<F<0>::value, args...> result;
            };
    
        template<size_t N, template<size_t> class F> 
            struct generate_array {
                typedef typename generate_array_impl<N-1, F>::result result;
            };
    };
    
    template<typename ArrayType> template<ArrayType... args> 
            const ArrayType Array<ArrayType>::ArrayHolder<args...>::data[sizeof...(args)] = { args... };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm wondering if its possible to make the following code more concise: $('#americasTrigger').hover( function
I'm wondering if its possible to make a program in C++ that can press
I was wondering if its possible to make an IF statement, where if a
I'm wondering if its possible to make a list like this: Or should I
I was wondering if its possible to change the default program class that gets
I have the following xslt sheet and I am wondering if its possible to
I was just wondering whether its possible to have something like this: I have
just wondering if its possible to have a hidden parent and a visible child
I'm not very experienced with Excel, but I'm wondering if its possible to make
I was wondering if its possible to make the height css value a percentage

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.