There's no documentation for this item.
Source Code
# File soap/baseData.rb, line 847 def retrieve(idxary) data = @data rank = 1 while rank <= idxary.size idx = idxary[rank - 1] if data[idx].nil? data = data[idx] = Array.new else data = data[idx] end rank += 1 end data end
<code/>and<pre/>for code samples.