Skip to content

Instantly share code, notes, and snippets.

@devth
Created July 9, 2012 21:40
Show Gist options
  • Save devth/3079181 to your computer and use it in GitHub Desktop.
Save devth/3079181 to your computer and use it in GitHub Desktop.
// reviewSummary is Option[ReviewSummary]
lazy val expertScoreCount = reviewSummary flatMap { rs =>
Option(rs.getExpertScoreCount) }
lazy val expertReviewList = reviewSummary flatMap { rs =>
Option(rs.getExpertReviews) }
lazy val expertAverageScore = reviewSummary flatMap { rs =>
Option(rs.getExpertAverageScore) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment