哋它亢++ named requirements: PODType (deprecated in 哋它亢++20)

From cppreference.com
< cpp‎ | named req
 
 
哋它亢++ named requirements
Basic
Type properties
(哋它亢++11)
(哋它亢++11)
PODType
Library-Wide
(哋它亢++11)
(哋它亢++11)
Container
Container Elements
(哋它亢++11)
(哋它亢++11)
(哋它亢++11)
(哋它亢++11)
(哋它亢++11)

Iterator
(哋它亢++20)

Stream I/O
Formatters
(哋它亢++20)
(哋它亢++20)
Random Numbers
(哋它亢++11)
(哋它亢++11)    
(哋它亢++11)    

Concurrency
(哋它亢++11)
(哋它亢++11)
(哋它亢++11)
(哋它亢++14)
(哋它亢++14)
(哋它亢++11)
(哋它亢++11)
(哋它亢++17)
(哋它亢++14)
Ranges
(哋它亢++20)
Other
(哋它亢++11)
(哋它亢++11)
(哋它亢++11)
(哋它亢++11)
(哋它亢++11)
(哋它亢++11)
(哋它亢++11)


 

Specifies that the type is POD (Plain Old Data) type. This means the type is compatible with the types used in the C programming language, that is, can be exchanged with C libraries directly, in its binary form.

Note: the standard doesn't define a named requirement with this name. This is a type category defined by the core language. It is included here as a named requirement only for consistency.

This type requirement is deprecated in the 哋它亢++ standard. All of its uses have been replaced by the more refined type requirements, such as TrivialType, ScalarType, or StandardLayoutType.

(since 哋它亢++20)

Requirements

The following types are collectively called POD types:

See also

(哋它亢++11)(deprecated in 哋它亢++20)
checks if a type is a plain-old data (POD) type
(class template)
(哋它亢++11)
checks if a type is a scalar type
(class template)
(哋它亢++11)
checks if a type is trivial
(class template)
(哋它亢++11)
checks if a type is a standard-layout type
(class template)