until¶
until
は、条件が *真* になるまで本体を実行します。until
は、条件を否定した while
の構文糖です。
until some_condition
do_this
end
# The above is the same as:
while !some_condition
do_this
end
break
と next
は until
の内部でも使用でき、while
式と同様に、break
を使用して until
から値を返すことができます。