Namespaces
Variants

std::experimental::propagate_const<T>:: operator element_type*, std::experimental::propagate_const<T>:: operator const element_type*

From cppreference.net
constexpr operator element_type * ( ) ;
(1) (라이브러리 fundamentals TS v2)
constexpr operator const element_type * ( ) const ;
(2) (라이브러리 fundamentals TS v2)

element_type * const element_type * 로의 암시적 변환을 제공합니다.

1) 이 함수는 T 가 객체 포인터 타입이거나 element_type * 로 암시적으로 변환 가능하지 않는 한 오버로드 해결에 참여하지 않습니다.
2) 이 함수는 다음 조건을 만족하지 않는 한 오버로드 해결에 참여하지 않습니다: T 가 객체 포인터 타입이거나 const element_type * 로 암시적으로 변환 가능한 경우.

목차

매개변수

(없음)

반환값

래핑된 포인터와 유사한 객체가 가리키는 객체에 대한 포인터, 즉 this - > get ( ) .

예제

참고 항목

래핑된 포인터가 가리키는 객체에 대한 포인터를 반환합니다
(public member function)