Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

I’m skeptical that C++ can manage anything as clear and concise as:

    type Age is new Natural range 0..150;


Well, for the end user it'd look like

    using age = in_range<int, 0, 150>;
Not the end of the world


Does this really define a new range-checked type? I never used in_range, but it seems a function [1] that you must call whenever you want to do the check on one variable, while in Pascal all the checks are injected automatically every time you modify a variable of that type.

[1] https://en.cppreference.com/w/cpp/utility/in_range


If I understand correctly the other comments, they just say it's possible to do in c++ with templates/operator overloading/constexpr. It's not an existing type of the standard library. This type could work in simple situations but will probably not be as good as a native type in more complex situations.


Calling in_range explicilty at every spot, versus letting the compiler do the work, isn't the same.


That’s a function, not a type.


It's a hypothetical. The actual `in_range` template function doesn't work like that at all and would be annoying to use for this if you tried (it returns true/false so you have to wrap all operations in a conditional). jcelerier is suggesting we'd have something like:

  template<typename T, int min, int max> // probably not int for min/max, but whatever
  class in_range {
    ...
  };
which would be instantiated with `using <my_type_name> = ...;` and would have all the necessary operator overloads and checks. Still, it's only bringing in the runtime, not compile time, checks and can't be "turned off" (well, maybe take a fourth boolean value and have two code paths everywhere that can be optimized down to one if you want to turn off the checks) like it can in Ada (whether that's a good idea or not depends on how well you've proved out your code). It's also introducing all the overhead of an object which isn't necessary in Ada.


> Still, it's only bringing in the runtime, not compile time, checks

it's doable to have both compile-time and run-time checks:

https://gcc.godbolt.org/z/oT3adre86

some compile-time interval calculus library would enable more check and does not seem much harder to implement than a run-time one.


a little bigger, more complete, example would help. this is something i have never seen in C++.

(note C++ is a big language that changes a lot)




Consider applying for YC's Fall 2026 batch! Applications are open till July 27.

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: