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.
と の 2 つの変数がaありbます。aと の両方を値と比較したいb、たとえば10.
a
b
10
私はこのようにすることができます:
10 == a && 10 == b
しかし、それを単一の式で記述する方法があるかどうか疑問に思っていました。(例: のようにa == b == 10)
a == b == 10
[a,b,3].all? {|x| x==10}
しかしこの場合
[].all? {|x| x==10}
また、trueを返します
aztaroth からのコメントを受けて更新:
[a,b].uniq == [10]