module R::MDIndexedObject
Public Instance Methods
[](*index)
click to toggle source
Calls superclass method
# File lib/R_interface/rmd_indexed_object.rb, line 36 def [](*index) if (index.size > 1) R::Support.exec_function(R::Support.md_index, @r_interop, *index) else super(*index) end end