module IbRubyProxy::Server::Ext::Array

Extensions to Array for converting between ruby and ib

Public Instance Methods

to_ib() click to toggle source
# File lib/ib_ruby_proxy/server/ext/array.rb, line 8
def to_ib
  collect(&:to_ib)
end
to_ruby() click to toggle source
# File lib/ib_ruby_proxy/server/ext/array.rb, line 12
def to_ruby
  collect(&:to_ruby)
end