How can I specialise a template with a template?












0















Consider a template class



template<class T>
class Foo
{
};


for which I can write a simple specialisation



template<>
class Foo<int>
{
};


I have a situation where I want to specialise Foo with a template class, in detail with a bool which serves as a compile-time flag:



template<>
class Foo<int, bool> // Clearly not the correct notation.
{

}


Uses would include Foo<1, true> and Foo<1, false>.



What is the correct notation for the class name, where I've marked "Clearly not the correct notation."?



I code to the C++11 standard.










share|improve this question























  • Foo<T> and Foo<T, E> are different templates.

    – Dan M.
    Nov 21 '18 at 16:11













  • It's not clear to me what you mean by "I want to specialise Foo with a template class" but you might want to specialize with a type that encodes both types, like Foo<std::tuple<int, bool>>.

    – François Andrieux
    Nov 21 '18 at 16:11


















0















Consider a template class



template<class T>
class Foo
{
};


for which I can write a simple specialisation



template<>
class Foo<int>
{
};


I have a situation where I want to specialise Foo with a template class, in detail with a bool which serves as a compile-time flag:



template<>
class Foo<int, bool> // Clearly not the correct notation.
{

}


Uses would include Foo<1, true> and Foo<1, false>.



What is the correct notation for the class name, where I've marked "Clearly not the correct notation."?



I code to the C++11 standard.










share|improve this question























  • Foo<T> and Foo<T, E> are different templates.

    – Dan M.
    Nov 21 '18 at 16:11













  • It's not clear to me what you mean by "I want to specialise Foo with a template class" but you might want to specialize with a type that encodes both types, like Foo<std::tuple<int, bool>>.

    – François Andrieux
    Nov 21 '18 at 16:11
















0












0








0








Consider a template class



template<class T>
class Foo
{
};


for which I can write a simple specialisation



template<>
class Foo<int>
{
};


I have a situation where I want to specialise Foo with a template class, in detail with a bool which serves as a compile-time flag:



template<>
class Foo<int, bool> // Clearly not the correct notation.
{

}


Uses would include Foo<1, true> and Foo<1, false>.



What is the correct notation for the class name, where I've marked "Clearly not the correct notation."?



I code to the C++11 standard.










share|improve this question














Consider a template class



template<class T>
class Foo
{
};


for which I can write a simple specialisation



template<>
class Foo<int>
{
};


I have a situation where I want to specialise Foo with a template class, in detail with a bool which serves as a compile-time flag:



template<>
class Foo<int, bool> // Clearly not the correct notation.
{

}


Uses would include Foo<1, true> and Foo<1, false>.



What is the correct notation for the class name, where I've marked "Clearly not the correct notation."?



I code to the C++11 standard.







c++ c++11 templates






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 21 '18 at 16:08









Sasidiran SangamanautramSasidiran Sangamanautram

20327




20327













  • Foo<T> and Foo<T, E> are different templates.

    – Dan M.
    Nov 21 '18 at 16:11













  • It's not clear to me what you mean by "I want to specialise Foo with a template class" but you might want to specialize with a type that encodes both types, like Foo<std::tuple<int, bool>>.

    – François Andrieux
    Nov 21 '18 at 16:11





















  • Foo<T> and Foo<T, E> are different templates.

    – Dan M.
    Nov 21 '18 at 16:11













  • It's not clear to me what you mean by "I want to specialise Foo with a template class" but you might want to specialize with a type that encodes both types, like Foo<std::tuple<int, bool>>.

    – François Andrieux
    Nov 21 '18 at 16:11



















Foo<T> and Foo<T, E> are different templates.

– Dan M.
Nov 21 '18 at 16:11







Foo<T> and Foo<T, E> are different templates.

– Dan M.
Nov 21 '18 at 16:11















It's not clear to me what you mean by "I want to specialise Foo with a template class" but you might want to specialize with a type that encodes both types, like Foo<std::tuple<int, bool>>.

– François Andrieux
Nov 21 '18 at 16:11







It's not clear to me what you mean by "I want to specialise Foo with a template class" but you might want to specialize with a type that encodes both types, like Foo<std::tuple<int, bool>>.

– François Andrieux
Nov 21 '18 at 16:11














3 Answers
3






active

oldest

votes


















1














Seems like default value for template argument.



template<class T, bool flag = false>
class Foo
{
};

template<>
class Foo<int>
{
//"false" specialization (default)
};

template<>
class Foo<int, true>
{
//"true" specialization
};





share|improve this answer































    5














    You need to change the primary template to



    template<class T, bool B>
    class Foo
    {
    };


    and then you can specialize it like



    template<>
    class Foo<int, true>
    {
    };

    template<>
    class Foo<int, false>
    {
    };
    ...


    and then you would use it like



    Foo<int, true> FooT;
    Foo<int, false> FooF;




    If you are going to use values for the first parameter like



    Foo<1, true>


    Then the primary template should be



    template<int I, bool B>
    class Foo
    {
    };


    and then you can specialize it like



    template<>
    class Foo<1, true>
    {
    };

    template<>
    class Foo<1, false>
    {
    };
    ...





    share|improve this answer


























    • Thanks. I think I'll do it this way.

      – Sasidiran Sangamanautram
      Nov 21 '18 at 16:16











    • @SasidiranSangamanautram I just noticed in your Q you want to use Foo like Foo<1, true>. Is that really what you want to use Foo?

      – NathanOliver
      Nov 21 '18 at 16:20











    • Almost yes, the first argument is actually an enum but I simplified it to an int.

      – Sasidiran Sangamanautram
      Nov 21 '18 at 16:33











    • @SasidiranSangamanautram Okay. I've added to the answer how to get that since what I first proposed is different.

      – NathanOliver
      Nov 21 '18 at 16:35



















    4














    This is not directly possible. Your template wants a single parameter, you can't specialize it for two. However, you can (partially) specialize it for some other type which is a template of two parameters.



    Example:



    template<class T>
    class Foo;

    template<int, bool> class tag;

    template<int>
    class Foo<tag<int, true>> { ... };

    template<int>
    class Foo<tag<int, false>> { ... };


    And than you can use it



    Foo<tag<1, true>> foo;





    share|improve this answer
























    • That's good to know. Thank you.

      – Sasidiran Sangamanautram
      Nov 21 '18 at 16:16











    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53416106%2fhow-can-i-specialise-a-template-with-a-template%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    3 Answers
    3






    active

    oldest

    votes








    3 Answers
    3






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    Seems like default value for template argument.



    template<class T, bool flag = false>
    class Foo
    {
    };

    template<>
    class Foo<int>
    {
    //"false" specialization (default)
    };

    template<>
    class Foo<int, true>
    {
    //"true" specialization
    };





    share|improve this answer




























      1














      Seems like default value for template argument.



      template<class T, bool flag = false>
      class Foo
      {
      };

      template<>
      class Foo<int>
      {
      //"false" specialization (default)
      };

      template<>
      class Foo<int, true>
      {
      //"true" specialization
      };





      share|improve this answer


























        1












        1








        1







        Seems like default value for template argument.



        template<class T, bool flag = false>
        class Foo
        {
        };

        template<>
        class Foo<int>
        {
        //"false" specialization (default)
        };

        template<>
        class Foo<int, true>
        {
        //"true" specialization
        };





        share|improve this answer













        Seems like default value for template argument.



        template<class T, bool flag = false>
        class Foo
        {
        };

        template<>
        class Foo<int>
        {
        //"false" specialization (default)
        };

        template<>
        class Foo<int, true>
        {
        //"true" specialization
        };






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 21 '18 at 16:41









        YuriyYuriy

        1679




        1679

























            5














            You need to change the primary template to



            template<class T, bool B>
            class Foo
            {
            };


            and then you can specialize it like



            template<>
            class Foo<int, true>
            {
            };

            template<>
            class Foo<int, false>
            {
            };
            ...


            and then you would use it like



            Foo<int, true> FooT;
            Foo<int, false> FooF;




            If you are going to use values for the first parameter like



            Foo<1, true>


            Then the primary template should be



            template<int I, bool B>
            class Foo
            {
            };


            and then you can specialize it like



            template<>
            class Foo<1, true>
            {
            };

            template<>
            class Foo<1, false>
            {
            };
            ...





            share|improve this answer


























            • Thanks. I think I'll do it this way.

              – Sasidiran Sangamanautram
              Nov 21 '18 at 16:16











            • @SasidiranSangamanautram I just noticed in your Q you want to use Foo like Foo<1, true>. Is that really what you want to use Foo?

              – NathanOliver
              Nov 21 '18 at 16:20











            • Almost yes, the first argument is actually an enum but I simplified it to an int.

              – Sasidiran Sangamanautram
              Nov 21 '18 at 16:33











            • @SasidiranSangamanautram Okay. I've added to the answer how to get that since what I first proposed is different.

              – NathanOliver
              Nov 21 '18 at 16:35
















            5














            You need to change the primary template to



            template<class T, bool B>
            class Foo
            {
            };


            and then you can specialize it like



            template<>
            class Foo<int, true>
            {
            };

            template<>
            class Foo<int, false>
            {
            };
            ...


            and then you would use it like



            Foo<int, true> FooT;
            Foo<int, false> FooF;




            If you are going to use values for the first parameter like



            Foo<1, true>


            Then the primary template should be



            template<int I, bool B>
            class Foo
            {
            };


            and then you can specialize it like



            template<>
            class Foo<1, true>
            {
            };

            template<>
            class Foo<1, false>
            {
            };
            ...





            share|improve this answer


























            • Thanks. I think I'll do it this way.

              – Sasidiran Sangamanautram
              Nov 21 '18 at 16:16











            • @SasidiranSangamanautram I just noticed in your Q you want to use Foo like Foo<1, true>. Is that really what you want to use Foo?

              – NathanOliver
              Nov 21 '18 at 16:20











            • Almost yes, the first argument is actually an enum but I simplified it to an int.

              – Sasidiran Sangamanautram
              Nov 21 '18 at 16:33











            • @SasidiranSangamanautram Okay. I've added to the answer how to get that since what I first proposed is different.

              – NathanOliver
              Nov 21 '18 at 16:35














            5












            5








            5







            You need to change the primary template to



            template<class T, bool B>
            class Foo
            {
            };


            and then you can specialize it like



            template<>
            class Foo<int, true>
            {
            };

            template<>
            class Foo<int, false>
            {
            };
            ...


            and then you would use it like



            Foo<int, true> FooT;
            Foo<int, false> FooF;




            If you are going to use values for the first parameter like



            Foo<1, true>


            Then the primary template should be



            template<int I, bool B>
            class Foo
            {
            };


            and then you can specialize it like



            template<>
            class Foo<1, true>
            {
            };

            template<>
            class Foo<1, false>
            {
            };
            ...





            share|improve this answer















            You need to change the primary template to



            template<class T, bool B>
            class Foo
            {
            };


            and then you can specialize it like



            template<>
            class Foo<int, true>
            {
            };

            template<>
            class Foo<int, false>
            {
            };
            ...


            and then you would use it like



            Foo<int, true> FooT;
            Foo<int, false> FooF;




            If you are going to use values for the first parameter like



            Foo<1, true>


            Then the primary template should be



            template<int I, bool B>
            class Foo
            {
            };


            and then you can specialize it like



            template<>
            class Foo<1, true>
            {
            };

            template<>
            class Foo<1, false>
            {
            };
            ...






            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Nov 21 '18 at 16:35

























            answered Nov 21 '18 at 16:12









            NathanOliverNathanOliver

            92.4k16129195




            92.4k16129195













            • Thanks. I think I'll do it this way.

              – Sasidiran Sangamanautram
              Nov 21 '18 at 16:16











            • @SasidiranSangamanautram I just noticed in your Q you want to use Foo like Foo<1, true>. Is that really what you want to use Foo?

              – NathanOliver
              Nov 21 '18 at 16:20











            • Almost yes, the first argument is actually an enum but I simplified it to an int.

              – Sasidiran Sangamanautram
              Nov 21 '18 at 16:33











            • @SasidiranSangamanautram Okay. I've added to the answer how to get that since what I first proposed is different.

              – NathanOliver
              Nov 21 '18 at 16:35



















            • Thanks. I think I'll do it this way.

              – Sasidiran Sangamanautram
              Nov 21 '18 at 16:16











            • @SasidiranSangamanautram I just noticed in your Q you want to use Foo like Foo<1, true>. Is that really what you want to use Foo?

              – NathanOliver
              Nov 21 '18 at 16:20











            • Almost yes, the first argument is actually an enum but I simplified it to an int.

              – Sasidiran Sangamanautram
              Nov 21 '18 at 16:33











            • @SasidiranSangamanautram Okay. I've added to the answer how to get that since what I first proposed is different.

              – NathanOliver
              Nov 21 '18 at 16:35

















            Thanks. I think I'll do it this way.

            – Sasidiran Sangamanautram
            Nov 21 '18 at 16:16





            Thanks. I think I'll do it this way.

            – Sasidiran Sangamanautram
            Nov 21 '18 at 16:16













            @SasidiranSangamanautram I just noticed in your Q you want to use Foo like Foo<1, true>. Is that really what you want to use Foo?

            – NathanOliver
            Nov 21 '18 at 16:20





            @SasidiranSangamanautram I just noticed in your Q you want to use Foo like Foo<1, true>. Is that really what you want to use Foo?

            – NathanOliver
            Nov 21 '18 at 16:20













            Almost yes, the first argument is actually an enum but I simplified it to an int.

            – Sasidiran Sangamanautram
            Nov 21 '18 at 16:33





            Almost yes, the first argument is actually an enum but I simplified it to an int.

            – Sasidiran Sangamanautram
            Nov 21 '18 at 16:33













            @SasidiranSangamanautram Okay. I've added to the answer how to get that since what I first proposed is different.

            – NathanOliver
            Nov 21 '18 at 16:35





            @SasidiranSangamanautram Okay. I've added to the answer how to get that since what I first proposed is different.

            – NathanOliver
            Nov 21 '18 at 16:35











            4














            This is not directly possible. Your template wants a single parameter, you can't specialize it for two. However, you can (partially) specialize it for some other type which is a template of two parameters.



            Example:



            template<class T>
            class Foo;

            template<int, bool> class tag;

            template<int>
            class Foo<tag<int, true>> { ... };

            template<int>
            class Foo<tag<int, false>> { ... };


            And than you can use it



            Foo<tag<1, true>> foo;





            share|improve this answer
























            • That's good to know. Thank you.

              – Sasidiran Sangamanautram
              Nov 21 '18 at 16:16
















            4














            This is not directly possible. Your template wants a single parameter, you can't specialize it for two. However, you can (partially) specialize it for some other type which is a template of two parameters.



            Example:



            template<class T>
            class Foo;

            template<int, bool> class tag;

            template<int>
            class Foo<tag<int, true>> { ... };

            template<int>
            class Foo<tag<int, false>> { ... };


            And than you can use it



            Foo<tag<1, true>> foo;





            share|improve this answer
























            • That's good to know. Thank you.

              – Sasidiran Sangamanautram
              Nov 21 '18 at 16:16














            4












            4








            4







            This is not directly possible. Your template wants a single parameter, you can't specialize it for two. However, you can (partially) specialize it for some other type which is a template of two parameters.



            Example:



            template<class T>
            class Foo;

            template<int, bool> class tag;

            template<int>
            class Foo<tag<int, true>> { ... };

            template<int>
            class Foo<tag<int, false>> { ... };


            And than you can use it



            Foo<tag<1, true>> foo;





            share|improve this answer













            This is not directly possible. Your template wants a single parameter, you can't specialize it for two. However, you can (partially) specialize it for some other type which is a template of two parameters.



            Example:



            template<class T>
            class Foo;

            template<int, bool> class tag;

            template<int>
            class Foo<tag<int, true>> { ... };

            template<int>
            class Foo<tag<int, false>> { ... };


            And than you can use it



            Foo<tag<1, true>> foo;






            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Nov 21 '18 at 16:12









            SergeyASergeyA

            43.1k53886




            43.1k53886













            • That's good to know. Thank you.

              – Sasidiran Sangamanautram
              Nov 21 '18 at 16:16



















            • That's good to know. Thank you.

              – Sasidiran Sangamanautram
              Nov 21 '18 at 16:16

















            That's good to know. Thank you.

            – Sasidiran Sangamanautram
            Nov 21 '18 at 16:16





            That's good to know. Thank you.

            – Sasidiran Sangamanautram
            Nov 21 '18 at 16:16


















            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53416106%2fhow-can-i-specialise-a-template-with-a-template%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            MongoDB - Not Authorized To Execute Command

            How to fix TextFormField cause rebuild widget in Flutter

            in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith