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) (ライブラリ基盤仕様 TS v2)
constexpr operator const element_type * ( ) const ;
(2) (ライブラリ基盤仕様 TS v2)

element_type * および const element_type * への暗黙変換を提供します。

1) この関数は、 T がオブジェクトポインタ型であるか、暗黙的に element_type * に変換可能でない限り、オーバーロード解決に参加しません。
2) この関数は、 T がオブジェクトポインタ型であるか、暗黙的に const element_type * に変換可能でない限り、オーバーロード解決に参加しません。

目次

パラメータ

(なし)

戻り値

ラップされたポインタライクオブジェクトが指すオブジェクトへのポインタ、すなわち this - > get ( )

関連項目

ラップされたポインタが指すオブジェクトへのポインタを返す
(公開メンバ関数)