最終更新日時:
が更新

履歴 編集

BOOST_PP_INC

BOOST_PP_INC マクロはその引数より 1 大きな値に展開される。

Usage

BOOST_PP_INC(x)

Arguments

  • x : インクリメントされる値。 有効な値の範囲は 0 から BOOST_PP_LIMIT_MAG までである。

Remarks

もし xBOOST_PP_LIMIT_MAG なら、結果は BOOST_PP_LIMIT_MAG である。

See Also

Requirements

Header: <boost/preprocessor/arithmetic/inc.hpp>

Sample Code

#include <boost/preprocessor/arithmetic/inc.hpp>

BOOST_PP_INC(BOOST_PP_INC(6)) // expands to 8
BOOST_PP_INC(4) // expands to 5