blob: d83c70b209da5f6969add8f4940795f95b3db2bf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef PYTHONIC_DISPATCH_CLEAR_HPP
#define PYTHONIC_DISPATCH_CLEAR_HPP
#include "pythonic/include/__dispatch__/clear.hpp"
#include "pythonic/utils/functor.hpp"
PYTHONIC_NS_BEGIN
namespace __dispatch__
{
template <class Any>
auto clear(Any &&any) -> decltype(any.clear());
}
PYTHONIC_NS_END
#endif
|