Skip to content

Instantly share code, notes, and snippets.

@uehaj
Created October 10, 2010 16:54
Show Gist options
  • Select an option

  • Save uehaj/619374 to your computer and use it in GitHub Desktop.

Select an option

Save uehaj/619374 to your computer and use it in GitHub Desktop.
// g100pon #62 Groovy Truthのカスタマイズ
class Complex {
double re
double im
boolean asBoolean() {
im != 0 && re != 0
}
}
assert !new Complex(im:0, re:0)
assert new Complex(im:0, re:1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment