method
    
    each_slice
 
  each_slice(p1)
  public
  Iterates the given block for each slice of <n> elements. If no block is given, returns an enumerator.
(1..10).each_slice(3) { |a| p a } # outputs below [1, 2, 3] [4, 5, 6] [7, 8, 9] [10]
  
    
      Register or 
      log in
      to add new notes.
  
  
  
  
      
     yonosoytu -  
    August 23, 2008
 yonosoytu -  
    August 23, 2008 
    
  
  
  
       
  
  
  
           yonosoytu -  
    August 23, 2008
 yonosoytu -  
    August 23, 2008 
    
  
    
    2 thanks
     
  
  
  Needs requiring 'enumerator' to work
This method needs that you
require 'enumerator'
for this method to be available.

 RSpec
RSpec Ruby on Rails
Ruby on Rails Ruby
Ruby 
   
   
   
   
   
   = private
 = private = protected
 = protected
   
    