4#ifndef TETL_CONCEPTS_COPY_CONSTRUCTIBLE_HPP
5#define TETL_CONCEPTS_COPY_CONSTRUCTIBLE_HPP
7#include <etl/_concepts/constructible_from.hpp>
8#include <etl/_concepts/convertible_to.hpp>
9#include <etl/_concepts/move_constructible.hpp>
20concept copy_constructible = move_constructible<T>
21 and constructible_from<T, T&>
22 and convertible_to<T&, T>
23 and constructible_from<T, T
const&>
24 and convertible_to<T
const&, T>
25 and constructible_from<T, T
const>
26 and convertible_to<T
const, T>;
Definition adjacent_find.hpp:9