Skip to content

Instantly share code, notes, and snippets.

@fj
Created May 1, 2012 14:19
Show Gist options
  • Save fj/2568223 to your computer and use it in GitHub Desktop.
Save fj/2568223 to your computer and use it in GitHub Desktop.
early-returns
class Poll
def confidence_interval
return nil unless enough_samples?
results.inject(ConfidenceMetric.new) do |cm, r|
cm.assess r
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment