/
UCS
/
sqlite_orm
Обзор
Документация
Войти
/
UCS
/
sqlite_orm
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
dev/ast/into.h
21 строка
388 B
klaus triendl
Renamed file cxx_polyfill.h to cxx_type_traits_polyfill.h
28 май 2022, 11:32
28 май 2022, 11:32
1bed906
Код
Авторство
О чём код?
#pragma once #include "../functional/cxx_type_traits_polyfill.h" namespace sqlite_orm { namespace internal { template<class T> struct into_t { using type = T; }; template<class T> using is_into = polyfill::is_specialization_of<T, into_t>; } template<class T> internal::into_t<T> into() { return {}; } }