Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
std::ranges::subrange_kind(3) C++ Standard Libarystd::ranges::subrange_kind(3)

NAME
       std::ranges::subrange_kind - std::ranges::subrange_kind

Synopsis
	  Defined in header <ranges>
	  enum class subrange_kind : bool {

	      unsized,			     (since C++20)
	      sized

	  };

	  Specifies if a std::ranges::subrange models std::ranges::sized_range
       or not.

	  Constant Explanation
	  unsized  specifies that the subrange does not	model sized_range
	  sized	   specifies that the subrange does model sized_range

http://cppreference.com		  2024.06.10	 std::ranges::subrange_kind(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=std::ranges::subrange_kind&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>

home | help