Home > Software design >  Type trait to check if istream operator>> exists for given type
Type trait to check if istream operator>> exists for given type

Time:08-17

I found this type trait which can be used to check if a certain type T supports operator<<:

template<class Class>
struct has_ostream_operator_impl {
    template<class V>
    static auto test(V*) -> decltype(std::declval<std::ostream>() << std::declval<V>());
    template<typename>
    static auto test(...) -> std::false_type;

    using type = typename std::is_same<std::ostream&, decltype(test<Class>(0))>::type;
};

template<class Class>
struct has_ostream_operator : has_ostream_operator_impl<Class>::type {};

Source: https://gist.github.com/szymek156/9b1b90fe474277be4641e9ef4666f472

This works fine. Now I'm trying to do the same thing for operator>> using c 11, but I don't get it to work:

template<class Class>
struct has_istream_operator_impl {
  template<class V>
  static auto test(V*) -> decltype(std::declval<V>() >> std::declval<std::istream>());
  template<typename>
  static auto test(...) -> std::false_type;

  using type = typename std::is_same<std::istream&, decltype(test<Class>(0))>::type;
};

/**
 * @brief Type trait to check if operator>>(std::istream, Type) is defined for a given type.
 */
template<class Class>
struct has_istream_operator : has_istream_operator_impl<Class>::type {};

Here is a simplified test for my use case:

#include <sstream>
#include <type_traits>
#include <iostream>

// <include snippet 2>

template<typename T>
typename std::enable_if<has_istream_operator<T>::value, T>::type
fromString(const std::string& str) {
  T value;
  std::istringstream stream(str);
  stream >> value;
  return value;
}

int main() {
  std::cout << fromString<long>("123")   1 << std::endl; // expecting 124
  return 0;
}

Error is:

has_istream_operator.cpp: In function ‘int main()’:
has_istream_operator.cpp:57:38: error: no matching function for call to ‘fromString<long int>(const char [4])’
   std::cout << fromString<long>("123")   1 << std::endl; // expecting 124
                                      ^
has_istream_operator.cpp:49:1: note: candidate: ‘template<class T> typename std::enable_if<has_istream_operator<Class>::value, T>::type fromString(const string&)’
 fromString(const std::string& str) {
 ^~~~~~~~~~
has_istream_operator.cpp:49:1: note:   template argument deduction/substitution failed:
has_istream_operator.cpp: In substitution of ‘template<class T> typename std::enable_if<has_istream_operator<Class>::value, T>::type fromString(const string&) [with T = long int]’:
has_istream_operator.cpp:57:38:   required from here
has_istream_operator.cpp:49:1: error: no type named ‘type’ in ‘struct std::enable_if<false, long int>’

From which I understand that the SFINAE condition is false and therefore no definition of fromString exists.

What I have tried is to play around with the line

static auto test(V*) -> decltype(std::declval<V>() >> std::declval<std::istream>());

inside my definition of struct has_istream_operator_impl.

This is the variation which makes most sense to me, because when I use the operator>>, I usually do it this way: stream >> value for example and from my (limited) understanding, the test(V*) should test this generically for V:

static auto test(V*) -> decltype(std::declval<std::istream>() >> std::declval<V>());

But it does also not work (same error).

How do get I this to work?

CodePudding user response:

Long story short, you should change

static auto test(V*) -> decltype(std::declval<V>() >> std::declval<std::istream>());

to

static auto test(V*) -> decltype(std::declval<std::istream>() >> std::declval<V&>());

There were two errors in the code, due to the following.

  • The >> operator takes the stream as first argument, not as second arugment.
  • declval<V>() is generating an rvalue (well, not really a value because we are in an unevaluated context), to which you can't assign a value via >> (just like you can't cin >> 123;), so you have to change it to declval<V&>().

To give an example of what std::decltype is doing, these both pass

static_assert(std::is_same_v<decltype(std::declval<int>()), int&&>);
static_assert(std::is_same_v<decltype(std::declval<int&>()), int&>);

and this fails to compile

int x;
std::cin >> static_cast<int&&>(x); // XXX

where the // XXX line is what std::declval<std::istream>() >> std::declval<V>() is "emulating".

  • Related