[][src]Module rust_js_ts_gen::util

Functions

addition

数値の足し算、文字列の結合 a + b @param left 左辺 @param right 右辺

array_type

Array<elementType>

bitwise_and

ビットAND a & b @param left 左辺 @param right 右辺

bitwise_not

ビット否定 ~a

bitwise_or

ビットOR a | b @param left 左辺 @param right 右辺

bitwise_xor

ビット XOR

call_math_method
call_method

メソッドを呼ぶ (getとcallのシンタックスシュガー)

call_number_method
console_log
date_type

Date

division

数値の割り算 a / b @param left 左辺 @param right 右辺

equal

等号 a === b @param left 左辺 @param right 右辺

exponentiation

べき乗

get

プロパティの値を取得する。getByExprのシンタックスシュガー

left_shift

左シフト a << b @param left 左辺 @param right 右辺

less_than

未満 a < b @param left 左辺 @param right 右辺

less_than_or_equal

以下 a <= b @param left 左辺 @param right 右辺

logical_and

論理AND a && b @param left 左辺 @param right 右辺

logical_not

論理否定

logical_or

論理OR a || b @param left 左辺 @param right 右辺

map_type

Map<keyType, valueType>

minus

単項マイナス演算子 -a

modulo

剰余演算 a % b @param left 左辺 @param right 右辺

multiplication

数値の掛け算

new_date
new_map
new_set
new_uint8array
not_equal

不等号 a !== b @param left 左辺 @param right 右辺

promise_type

Promise<returnType>

readonly_array_type

ReadonlyArray<elementType>

readonly_map_type

ReadonlyMap<keyType, valueType>

readonly_set_type

ReadonlySet<elementType>

set_type

Set<elementType>

signed_right_shift

符号を維持する右シフト a >> b @param left 左辺 @param right 右辺

subtraction

数値の引き算 a - b @param left 左辺 @param right 右辺

uint8array_type

Uint8Array

unsigned_right_shift

符号を維持しない(0埋め)右シフト a >>> b @param left 左辺 @param right 右辺