Class: Hash
- Inherits:
-
Object
- Object
- Hash
- Defined in:
- lib/ostrich-jruby/ext/hash.rb
Instance Method Summary collapse
Instance Method Details
#to_scala ⇒ Object
2 3 4 5 6 7 8 |
# File 'lib/ostrich-jruby/ext/hash.rb', line 2 def to_scala Java::Scala.collection.mutable::HashMap.new.tap do |map| each_pair do |key, val| map.put(key, val) end end end |