Namespace MiMicLib
Defined in: MiMicCore.js.
Constructor Attributes | Constructor Name and Description |
---|---|
MiMicが使用する関数、定数を定義する。
|
Method Attributes | Method Name and Description |
---|---|
<static> |
MiMicLib.cloneAssoc(a)
連想配列をシャローコピーして複製する。
|
<static> |
MiMicLib.hexout(i_val, i_digit)
桁数を指定して、int値を16進数に変換する。
|
<static> |
MiMicLib.isUndef(a)
aがundefinedであるかを真偽値で返す。
|
Method Detail
<static>
{object}
MiMicLib.cloneAssoc(a)
連想配列をシャローコピーして複製する。
- Parameters:
- {object} a
- 複製元のオブジェクトである。
- Returns:
- {object} 複製したオブジェクトである。
<static>
{string}
MiMicLib.hexout(i_val, i_digit)
桁数を指定して、int値を16進数に変換する。
- Parameters:
- {int} i_val
- 変換する値
- {int} i_digit
- 桁数
- Returns:
- {string} 文字列形式の値
<static>
{Boolean}
MiMicLib.isUndef(a)
aがundefinedであるかを真偽値で返す。
- Parameters:
- {object} a
- 判定対象のオブジェクト
- Returns:
- {Boolean} aがundefinedであれば、trueである。