Method: Riddle::Client::Response#next_array
- Defined in:
- lib/riddle/client/response.rb
#next_array ⇒ Object
Returns an array of string items
49 50 51 52 53 54 55 56 57 |
# File 'lib/riddle/client/response.rb', line 49 def next_array count = next_int items = [] count.times do items << self.next end items end |