std::experimental::reflect::get_source_column - cppreference.com

From cppreference.com

Provides the member constant value equal to the implementation-defined value representing some offset from the start of the line of the declaration of the entity or typedef-name reflected by T.

Helper variable template

template< class T > constexpr auto get_source_column_v = get_source_column<T>::value;

(reflection TS)

Inherited from std::integral_constant

Member constants

the implementation-defined value representing some offset from the start of the line of the declaration of the entity or typedef-name reflected by T
(public static member constant)

Member functions

operator std::uint_least32_t

converts the object to std::uint_least32_t, returns value
(public member function)
returns value
(public member function)

Member types

Type Definition
value_type std::uint_least32_t
type std::integral_constant<std::uint_least32_t, value>

Example

See also

return the column number represented by this object
(public member function of std::source_location) [edit]