operator % 연산자(STL)
나머지 작업에 대 한 기간 개체입니다.
template<class Rep1, class Period1, class Rep2>
constexpr duration<typename common_type<Rep1, Rep2>::type, Period1>
operator%(
const duration<Rep1, Period1>& Dur,
const Rep2& Div);
template<class Rep1, class Period1, class Rep2, class Period2>
constexpr typename common_type<Rep1, Rep2>::type
operator%(
const duration<Rep1, Period1>& Left,
const duration<Rep2, Period2>& Right);
매개 변수
Dur
duration 개체Div
정수 값입니다.Left
왼쪽 duration 개체입니다.Right
오른쪽 duration 개체입니다.
반환 값
첫 번째 함수 반환은 duration 간격 길이가 긴 개체 Dur 나머지 Div.
나타내는 값을 반환 하는 두 번째 함수 Left 나머지 Right.
요구 사항
헤더: chrono
네임 스페이스: std::chrono