is there a ruby one-line “return if x”?

后端 未结 4 1376
有刺的猬
有刺的猬 2021-02-06 22:08

have a ton of places I need to add

if this_flag
  return
end

can that be done on one line with ruby?

4条回答
  •  无人及你
    2021-02-06 22:45

    is there a ruby one-line “return if x” ?

    Yes:

    return if x
    

    I love Ruby :-)

提交回复
热议问题