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.
私は次のようなコードを持っています:
for (var i = 0; i < 5; i++) { // do something }
これは私が書きたくないたくさんの定型文です。Rubyには時代のようなものがありますか?
5.times do |i| // something end
Dartでは次のようになります。
5.times(doSomething);
また
5.times((i) => doSomething);
?
いいえ。ダートには(まだ?)同様の構造はありません。話し合いfor (var i in 1.to(5)) doSomething;ましたが、今のところ追加されていません。
for (var i in 1.to(5)) doSomething;