Skip to content

Instantly share code, notes, and snippets.

@jruby
Created December 30, 2009 16:48
Show Gist options
  • Save jruby/266174 to your computer and use it in GitHub Desktop.
Save jruby/266174 to your computer and use it in GitHub Desktop.
~/projects/jruby ➔ jirb
irb(main):001:0> class Object ; def blank?; length == 0; end; end
=> nil
irb(main):002:0> require 'java'
=> true
irb(main):003:0> a = java.util.ArrayList.new
=> []
irb(main):004:0> a << 1
=> [1]
irb(main):005:0> a.blank?
=> false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment