Detecting if an element is found inside a containercontains() algorithm for std::vectorSimple container class with templatesPolymorphic STL foreach without passing the container typeGeneric container assignmentC++11 Quicksort any containerTriple-type template containerCreating a custom template container class (vector alike)Shift an element in a circular containerNon-sequential template class container C++Internal Zip-like IteratorBasic binary number container

How does strength of boric acid solution increase in presence of salicylic acid?

Mathematical cryptic clues

The use of multiple foreign keys on same column in SQL Server

Test if tikzmark exists on same page

What are the differences between the usage of 'it' and 'they'?

What typically incentivizes a professor to change jobs to a lower ranking university?

Is a conference paper whose proceedings will be published in IEEE Xplore counted as a publication?

Why don't electron-positron collisions release infinite energy?

Characters won't fit in table

Why are electrically insulating heatsinks so rare? Is it just cost?

Font hinting is lost in Chrome-like browsers (for some languages )

Why do falling prices hurt debtors?

Fencing style for blades that can attack from a distance

How to write a macro that is braces sensitive?

Can I make popcorn with any corn?

What would happen to a modern skyscraper if it rains micro blackholes?

Watching something be written to a file live with tail

Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)

Why was the small council so happy for Tyrion to become the Master of Coin?

How to find program name(s) of an installed package?

Why "Having chlorophyll without photosynthesis is actually very dangerous" and "like living with a bomb"?

Why are 150k or 200k jobs considered good when there are 300k+ births a month?

What's the point of deactivating Num Lock on login screens?

Either or Neither in sentence with another negative



Detecting if an element is found inside a container


contains() algorithm for std::vectorSimple container class with templatesPolymorphic STL foreach without passing the container typeGeneric container assignmentC++11 Quicksort any containerTriple-type template containerCreating a custom template container class (vector alike)Shift an element in a circular containerNon-sequential template class container C++Internal Zip-like IteratorBasic binary number container






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








4












$begingroup$


I just wrote this template to detect if a given element is found inside a container:



template <typename Iterator> bool is_contained(Iterator begin, Iterator end, decltype(*begin) object)

for (; begin != end; ++begin)

if (*begin == object)

return true;


return false;



Which then would be called for examples as:



bool test = is_contained<decltype(container.begin())>(container.begin(), container.end(), anything);


This works fine, but I believe it is not so readable. I am also new to using decltype which makes me wonder if this would crash, and somehow I wont be calling the template correctly. Any feedback is highly appreciated.










share|improve this question









$endgroup$


















    4












    $begingroup$


    I just wrote this template to detect if a given element is found inside a container:



    template <typename Iterator> bool is_contained(Iterator begin, Iterator end, decltype(*begin) object)

    for (; begin != end; ++begin)

    if (*begin == object)

    return true;


    return false;



    Which then would be called for examples as:



    bool test = is_contained<decltype(container.begin())>(container.begin(), container.end(), anything);


    This works fine, but I believe it is not so readable. I am also new to using decltype which makes me wonder if this would crash, and somehow I wont be calling the template correctly. Any feedback is highly appreciated.










    share|improve this question









    $endgroup$














      4












      4








      4





      $begingroup$


      I just wrote this template to detect if a given element is found inside a container:



      template <typename Iterator> bool is_contained(Iterator begin, Iterator end, decltype(*begin) object)

      for (; begin != end; ++begin)

      if (*begin == object)

      return true;


      return false;



      Which then would be called for examples as:



      bool test = is_contained<decltype(container.begin())>(container.begin(), container.end(), anything);


      This works fine, but I believe it is not so readable. I am also new to using decltype which makes me wonder if this would crash, and somehow I wont be calling the template correctly. Any feedback is highly appreciated.










      share|improve this question









      $endgroup$




      I just wrote this template to detect if a given element is found inside a container:



      template <typename Iterator> bool is_contained(Iterator begin, Iterator end, decltype(*begin) object)

      for (; begin != end; ++begin)

      if (*begin == object)

      return true;


      return false;



      Which then would be called for examples as:



      bool test = is_contained<decltype(container.begin())>(container.begin(), container.end(), anything);


      This works fine, but I believe it is not so readable. I am also new to using decltype which makes me wonder if this would crash, and somehow I wont be calling the template correctly. Any feedback is highly appreciated.







      c++ beginner template






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 27 at 19:04









      Daniel DuqueDaniel Duque

      555




      555




















          2 Answers
          2






          active

          oldest

          votes


















          8












          $begingroup$

          Note that for functions the compiler will detect the template types based on the parameters.

          So you can simply write:



          bool test = is_contained(container.begin(), container.end(), anything);


          I don't particularly like the use of decltype in your function. I would simply make it another template parameter.



          template <typename Iterator, typename Value>
          bool is_contained(Iterator begin, Iterator end, Value const& object);


          Because of the compiler deducing the names you can use any type. Also this is more flexable as it allows you to use any type that is comparable to the type inside the container (rather than only allowing values that are the same type (or trivial convertible)).






          share|improve this answer









          $endgroup$




















            5












            $begingroup$


            1. Do you want to test whether an element is in a container, or an iterator-range?



              • The first allows for optimisation (taking advantage of the container's peculiarities). See "contains() algorithm for std::vector" for an example.

              • The second is more general in the absence of any range-library, like the one expected for the C++20 standard, and available for earlier versions.



            2. Constraining the needle to the type decltype(*begin) is very problematic:



              • It forces pass-by-value, which while it should be possible, at least with moveing, might be inefficient.

              • You cannot take advantage of transparent comparators (a C++14 feature), forcing the creation of a useless temporary. On the flip-side, if transparent comparators are not used, only a single temporary is constructed.

              • If the type is a proxy like with the dreaded std::vector <bool>, hilarity ensues.


            3. Consider taking advantage of the standard library, specifically std::find ().


            4. C++ will deduce the function's template-arguments perfectly fine, no need for error-prone verbosity.






            share|improve this answer









            $endgroup$












            • $begingroup$
              On point 2, it's even worse: you can't pass a value that's convertible to decltype(*begin), because templates need exact matches.
              $endgroup$
              – Toby Speight
              Mar 28 at 22:09











            Your Answer





            StackExchange.ifUsing("editor", function ()
            return StackExchange.using("mathjaxEditing", function ()
            StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
            StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["\$", "\$"]]);
            );
            );
            , "mathjax-editing");

            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: "196"
            ;
            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: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            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%2fcodereview.stackexchange.com%2fquestions%2f216361%2fdetecting-if-an-element-is-found-inside-a-container%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            8












            $begingroup$

            Note that for functions the compiler will detect the template types based on the parameters.

            So you can simply write:



            bool test = is_contained(container.begin(), container.end(), anything);


            I don't particularly like the use of decltype in your function. I would simply make it another template parameter.



            template <typename Iterator, typename Value>
            bool is_contained(Iterator begin, Iterator end, Value const& object);


            Because of the compiler deducing the names you can use any type. Also this is more flexable as it allows you to use any type that is comparable to the type inside the container (rather than only allowing values that are the same type (or trivial convertible)).






            share|improve this answer









            $endgroup$

















              8












              $begingroup$

              Note that for functions the compiler will detect the template types based on the parameters.

              So you can simply write:



              bool test = is_contained(container.begin(), container.end(), anything);


              I don't particularly like the use of decltype in your function. I would simply make it another template parameter.



              template <typename Iterator, typename Value>
              bool is_contained(Iterator begin, Iterator end, Value const& object);


              Because of the compiler deducing the names you can use any type. Also this is more flexable as it allows you to use any type that is comparable to the type inside the container (rather than only allowing values that are the same type (or trivial convertible)).






              share|improve this answer









              $endgroup$















                8












                8








                8





                $begingroup$

                Note that for functions the compiler will detect the template types based on the parameters.

                So you can simply write:



                bool test = is_contained(container.begin(), container.end(), anything);


                I don't particularly like the use of decltype in your function. I would simply make it another template parameter.



                template <typename Iterator, typename Value>
                bool is_contained(Iterator begin, Iterator end, Value const& object);


                Because of the compiler deducing the names you can use any type. Also this is more flexable as it allows you to use any type that is comparable to the type inside the container (rather than only allowing values that are the same type (or trivial convertible)).






                share|improve this answer









                $endgroup$



                Note that for functions the compiler will detect the template types based on the parameters.

                So you can simply write:



                bool test = is_contained(container.begin(), container.end(), anything);


                I don't particularly like the use of decltype in your function. I would simply make it another template parameter.



                template <typename Iterator, typename Value>
                bool is_contained(Iterator begin, Iterator end, Value const& object);


                Because of the compiler deducing the names you can use any type. Also this is more flexable as it allows you to use any type that is comparable to the type inside the container (rather than only allowing values that are the same type (or trivial convertible)).







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 27 at 19:15









                Martin YorkMartin York

                74.3k488272




                74.3k488272























                    5












                    $begingroup$


                    1. Do you want to test whether an element is in a container, or an iterator-range?



                      • The first allows for optimisation (taking advantage of the container's peculiarities). See "contains() algorithm for std::vector" for an example.

                      • The second is more general in the absence of any range-library, like the one expected for the C++20 standard, and available for earlier versions.



                    2. Constraining the needle to the type decltype(*begin) is very problematic:



                      • It forces pass-by-value, which while it should be possible, at least with moveing, might be inefficient.

                      • You cannot take advantage of transparent comparators (a C++14 feature), forcing the creation of a useless temporary. On the flip-side, if transparent comparators are not used, only a single temporary is constructed.

                      • If the type is a proxy like with the dreaded std::vector <bool>, hilarity ensues.


                    3. Consider taking advantage of the standard library, specifically std::find ().


                    4. C++ will deduce the function's template-arguments perfectly fine, no need for error-prone verbosity.






                    share|improve this answer









                    $endgroup$












                    • $begingroup$
                      On point 2, it's even worse: you can't pass a value that's convertible to decltype(*begin), because templates need exact matches.
                      $endgroup$
                      – Toby Speight
                      Mar 28 at 22:09















                    5












                    $begingroup$


                    1. Do you want to test whether an element is in a container, or an iterator-range?



                      • The first allows for optimisation (taking advantage of the container's peculiarities). See "contains() algorithm for std::vector" for an example.

                      • The second is more general in the absence of any range-library, like the one expected for the C++20 standard, and available for earlier versions.



                    2. Constraining the needle to the type decltype(*begin) is very problematic:



                      • It forces pass-by-value, which while it should be possible, at least with moveing, might be inefficient.

                      • You cannot take advantage of transparent comparators (a C++14 feature), forcing the creation of a useless temporary. On the flip-side, if transparent comparators are not used, only a single temporary is constructed.

                      • If the type is a proxy like with the dreaded std::vector <bool>, hilarity ensues.


                    3. Consider taking advantage of the standard library, specifically std::find ().


                    4. C++ will deduce the function's template-arguments perfectly fine, no need for error-prone verbosity.






                    share|improve this answer









                    $endgroup$












                    • $begingroup$
                      On point 2, it's even worse: you can't pass a value that's convertible to decltype(*begin), because templates need exact matches.
                      $endgroup$
                      – Toby Speight
                      Mar 28 at 22:09













                    5












                    5








                    5





                    $begingroup$


                    1. Do you want to test whether an element is in a container, or an iterator-range?



                      • The first allows for optimisation (taking advantage of the container's peculiarities). See "contains() algorithm for std::vector" for an example.

                      • The second is more general in the absence of any range-library, like the one expected for the C++20 standard, and available for earlier versions.



                    2. Constraining the needle to the type decltype(*begin) is very problematic:



                      • It forces pass-by-value, which while it should be possible, at least with moveing, might be inefficient.

                      • You cannot take advantage of transparent comparators (a C++14 feature), forcing the creation of a useless temporary. On the flip-side, if transparent comparators are not used, only a single temporary is constructed.

                      • If the type is a proxy like with the dreaded std::vector <bool>, hilarity ensues.


                    3. Consider taking advantage of the standard library, specifically std::find ().


                    4. C++ will deduce the function's template-arguments perfectly fine, no need for error-prone verbosity.






                    share|improve this answer









                    $endgroup$




                    1. Do you want to test whether an element is in a container, or an iterator-range?



                      • The first allows for optimisation (taking advantage of the container's peculiarities). See "contains() algorithm for std::vector" for an example.

                      • The second is more general in the absence of any range-library, like the one expected for the C++20 standard, and available for earlier versions.



                    2. Constraining the needle to the type decltype(*begin) is very problematic:



                      • It forces pass-by-value, which while it should be possible, at least with moveing, might be inefficient.

                      • You cannot take advantage of transparent comparators (a C++14 feature), forcing the creation of a useless temporary. On the flip-side, if transparent comparators are not used, only a single temporary is constructed.

                      • If the type is a proxy like with the dreaded std::vector <bool>, hilarity ensues.


                    3. Consider taking advantage of the standard library, specifically std::find ().


                    4. C++ will deduce the function's template-arguments perfectly fine, no need for error-prone verbosity.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Mar 27 at 20:04









                    DeduplicatorDeduplicator

                    11.8k1950




                    11.8k1950











                    • $begingroup$
                      On point 2, it's even worse: you can't pass a value that's convertible to decltype(*begin), because templates need exact matches.
                      $endgroup$
                      – Toby Speight
                      Mar 28 at 22:09
















                    • $begingroup$
                      On point 2, it's even worse: you can't pass a value that's convertible to decltype(*begin), because templates need exact matches.
                      $endgroup$
                      – Toby Speight
                      Mar 28 at 22:09















                    $begingroup$
                    On point 2, it's even worse: you can't pass a value that's convertible to decltype(*begin), because templates need exact matches.
                    $endgroup$
                    – Toby Speight
                    Mar 28 at 22:09




                    $begingroup$
                    On point 2, it's even worse: you can't pass a value that's convertible to decltype(*begin), because templates need exact matches.
                    $endgroup$
                    – Toby Speight
                    Mar 28 at 22:09

















                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Code Review Stack Exchange!


                    • 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.

                    Use MathJax to format equations. MathJax reference.


                    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%2fcodereview.stackexchange.com%2fquestions%2f216361%2fdetecting-if-an-element-is-found-inside-a-container%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

                    Rank groups within a grouped sequence of TRUE/FALSE and NAGrouping functions (tapply, by, aggregate) and the *apply familyCharacters counting and subletting specific patternsWhat is the purpose of setting a key in data.table?data.table vs dplyr: can one do something well the other can't or does poorly?how to make a bar plot for a list of dataframes?How to group by unique values in a list in RPandas - Alternative to rank() function that gives unique ordinal ranks for a columnRank within group in for loop in RData transformation: from dyadic to observational data in RGetting map from purrr to work with paste0

                    Are all passive ability checks floors for active ability checks?Does passive perception supersede active perception?Which skills can be used passively?Active Opposition with Free-Form Professions in Fate5E Trap/Ambush/Stealth Mechanics VS Passive Perception ConfusionInteraction between perception and stealth in obscured conditionsHow does Keen Sight affect Passive Perception?Are all d20 rolls either attacks, saves or ability checks?Can players declare that they are making a specific ability check?Can I see a Hidden creature that is not obscured at all?Can a Stealth check ever be made passively?Is this alternate version of the Observant feat balanced?What is the minimum amount of skill points per HD?

                    Quoting Keynes in a lectureIs differentiated instruction permitted by universities?How to make students learn prerequisitesUnsatisfactory Instructor Evaluations: balancing of expectations of engineering studentsWhat is the difference between a “statistician”, “applied statistician”, and an academic applying advanced stats within their field?Listing in reference section, but not quotingHow to efficiently use time while preparing for a class?Graduate Admissions: Teaching Emphasisstrategies for sharing teaching information with universities I don't personally have contacts withIs there an efficient way to give a large class of students feedback about their assignments?Is it unreasonable to expect students to read the lecture notes before attending the first class?