Created
October 29, 2013 00:34
-
-
Save mdedetrich/7207282 to your computer and use it in GitHub Desktop.
User Bids
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val declinedBidIds = declinedBidsThisRound.map(_.user.id) | |
val currentBidsAlreadyMadeIds = currentBidsAlreadyMade.map(_.user.id) | |
val clientUsers = {for( | |
u <- Users if (u.id notIn declinedBidIds | |
&& u.completedSignup === true) | |
) yield u}.list |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment