memrootじしょ
英和翻訳
arrow-case
arrow-case
/ˈæroʊ keɪs/
アロウケース
1.
プログラミングにおける命名規則の一つで、特にアロー関数(=>)に関連する変数や関数名に適用されるスタイルを指します。
JavaScriptなどのプログラミング言語で使用されるアロー関数を扱う際に、その変数名や関数名を特定の方法で記述する命名規則を指します。例えば、`calculate-total-arrow`のようにハイフンでつなぐスタイルや、`calculateTotalArrow`のようなキャメルケースが意図されることがあります。
We
decided
to
use
arrow-case
for
all
our
utility
functions.
(私たちは全てのユーティリティ関数にアローケースを採用することに決めました。)
We
私たち
decided to use
~を使用することに決めた
arrow-case
アローケース(アロー関数に関連する命名規則)
for all our utility functions
私たちの全てのユーティリティ関数に対して
The
linter
rule
enforces
arrow-case
for
function
components.
(リンターのルールは関数コンポーネントにアローケースを強制します。)
The linter rule
そのリンターのルールは
enforces
強制する
arrow-case
アローケース(特定の命名規則)
for function components
関数コンポーネントに対して
Make
sure
to
follow
the
`arrow-case`
convention
when
naming
your
callback
functions.
(コールバック関数を命名する際は、`arrow-case`の規約に従うようにしてください。)
Make sure to follow
必ず~に従う
the `arrow-case` convention
アローケースの規約
when naming
命名する際に
your callback functions
あなたのコールバック関数を
関連
camelCase
snake_case
kebab-case
PascalCase
naming convention
arrow function
programming style