Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
キーワード「in」についてお聞きしたいです。その行き先は?いつ使う?それは何をするためのものか ?おすすめの使い方はありますか?効率はどうですか?前もって感謝します。
キーワードinはlet <binding> in <expression>構文の一部として使用されます。
in
let <binding> in <expression>
いつ使う?
式を使用するときはいつでも使用しletます。
let
それは何をするためのものか ?
バインディングが保持される式からバインディングを分離します。
おすすめの使い方はありますか?
推奨される使用方法は、バインディングと式の間の let 式の一部として使用することです。それを使用する他の方法はありません。
効率はどうですか?
その機能は単に構文上のものです。したがって、効率には関係ありません。