1.проверяет, все ли элементы массива удовлетворяют условию. 2. Хотябы оÐ


/ Published in: Ruby
Save to your folder(s)



Copy this code and paste it in your HTML
  1. @users.all?{ |user| user.activated == 1 }
  2. # или даже так:
  3. @users.all?(&:activated) # при условии что activated принимает значение true/false, т.к. 0 в Ruby считается true
  4.  
  5. @users.any?{ |user| user.activated == 1 }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.