intmath.h マニュアル

(The documentation of intmath.h)

Last update: 2023/6/27


intmath.hでは int型変数に対する様々な数学処理を行う関数が定義されている。 このヘッダファイル内で定義されている関数を以下に示す。 各関数の詳細は関数名をクリックしてリンク先を参照のこと。
Functions to conduct verious mathematical operations for int-type variables are defined in intmath.h. Functions defined in this header file are listed below. For details of individual functions, click the links.

関数名
Function name
機能・用途
Purpose
intpow 整数の巾乗を計算する。
Compute the power of an integer.
intlog 整数の対数を計算する。
Compute the logarithm of an integer.
bitrevpair 整数のビット反転を計算する。
Compute the bit reversal of an integer.
intmin 任意の個数の整数値の中から最小値を求める。
Identify the minimum value from an arbitrary number of integers.
intmax 任意の個数の整数値の中から最大値を求める。
Identify the maximum value from an arbitrary number of integers.
check_int_pow2 整数が2の巾乗になっているか否かをチェックする。
Check if an integer is a power of 2.