// -*-c++-*- // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying file Copyright.txt or https://cmake.org/licensing for details. */ #pragma once #include #include namespace cm { // checks if a type is an iterator type template using is_iterator = std::is_integral::difference_type>; // checks if a type is an input iterator type template using is_input_iterator = std::is_base_of::iterator_category>; // checks if a type is a range type: std::begin() and std::end() are supported template using is_range = cm::bool_constant< cm::is_iterator()))>::value && cm::is_iterator()))>::value>; // checks if a type is an input range type: std::begin() and std::end() are // returning an input iterator template using is_input_range = #if defined(_MSC_VER) && _MSC_VER < 1920 // MS C++ is not able to evaluate complex type introspection, // so use a simplified version cm::bool_constant::value || std::is_pointer::value || std::is_array::value>; #else cm::bool_constant()))>::value && cm::is_input_iterator()))>::value>; #endif } // namespace cm