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 7192073
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T19:51:48+00:00 2026-05-28T19:51:48+00:00

This might be an odd question, but how does one nicely loop over ALL

  • 0

This might be an odd question, but how does one nicely loop over ALL values of a type. In particular the standard integral types such as unsigned short. A normal for loop construct presents a difficulty: what condition to use to exit the loop – because all values are valid.

Of course, there are several ways to get the job done. Exit on the last value then handle that after the loop. Use a bigger int to count. The question is, is there a more elegant way?

  • 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-28T19:51:50+00:00Added an answer on May 28, 2026 at 7:51 pm

    If you want a pretty solution you can do this:

    for(auto x : everyvalue<short>()) {
      std::cout << x << '\n';
    }
    

    Where everyvalue is:

    #include <limits>
    template<typename T>
    struct everyvalue {
      struct iter {
        T x;
        bool flag;
        inline iter operator++() {
          if(x == std::numeric_limits<T>::max())
            flag = true;
          else
            ++x;
          return *this;
        }
        inline T operator*() { return x;}
        inline bool operator!=(iter& i) {return flag != i.flag;}
        // note: missing some iterator requirements, still should work
      };
      inline iter begin() { return iter{std::numeric_limits<T>::min(),0}; }
      inline iter end() { return iter{std::numeric_limits<T>::max(),1}; }
    };
    

    Otherwise a simple break would be preferred.

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

Sidebar

Related Questions

This might sound a bit of an odd question but I know what I
This might be an odd question, but when I scale my image in C#
This might be a little bit odd question, but Im trying to figure out
This might be an odd question, but it has actually caused me some headache.
N.B., this is all C# 4.0 This might seem like an odd question, let
This might be an odd question, but I have form in MVC3 that posts
So this might be an odd question, but I have a C# program that
This might be odd question but I am just goig to start a new
This might seem like a stupid question I admit. But I'm in a small
This might sound odd, but is there a 'Rails way' to have a model

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.