Skip to content

Instantly share code, notes, and snippets.

@uehaj
Created October 10, 2010 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uehaj/619374 to your computer and use it in GitHub Desktop.
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