関数integerParameterTooSmall0 マニュアル

(The documentation of function integerParameterTooSmall0)

Last Update: 2022/9/2


◆機能・用途(Purpose)

整数パラメータの値が特定の値以上でなければならない旨の エラーメッセージを出力してプログラムを終了する。
Display a message to inform that the value of an integer parameter must be greater than or equal to a certain value, and finish the program as an error.


◆形式(Format)

#include <argument.h>
inline void integerParameterTooSmall0
(const char ∗parameterName,const int parameterValue,
 const int minimumValue,const char ∗minimum_parameterName)


◆引数(Arguments)

parameterName パラメータ名。
A parameter name.
parameterValue パラメータ値。
The value of the parameter.
minimumValue パラメータ値の許容範囲の下限。
The lower bound of the allowed parameter range.
minimum_parameterName 下限に対応するパラメータ名。 これを""とすれば パラメータ値ではなく定数での下限指定となる。
The parameter name corresponding to the lower bound. Using "" results in specifying the lower bound not as a parameter but as a constant.


◆表示するメッセージ (The message displayed)


◆使用例(Example)

if(N<2){
     integerParameterTooSmall0("N", N, 2, "");
}

if(M<N){
     integerParameterTooSmall0("M", M, N, "N");
}