to_a()
  public
  
    
    
Returns a new 6-element array,
consisting of the label, user CPU time, system CPU time, children’s user
CPU time, children’s system CPU time and elapsed real time.
   
  
    Show source    
    
      
    def to_a
      [@label, @utime, @stime, @cutime, @cstime, @real]
    end