method
    
    try_convert
  
      v1_9_3_392 - 
      Show latest stable
 - 
    0 notes - 
    Class: Array
    
  
  
- 1_8_6_287
 - 1_8_7_72
 - 1_8_7_330
 - 1_9_1_378 (0)
 - 1_9_2_180 (38)
 - 1_9_3_125 (0)
 - 1_9_3_392 (-14)
 - 2_1_10 (0)
 - 2_2_9 (0)
 - 2_4_6 (0)
 - 2_5_5 (0)
 - 2_6_3 (0)
 - What's this?
 
try_convert(p1)
  public
  Tries to convert obj into an array, using to_ary method. Returns the converted array or nil if obj cannot be converted for any reason. This method can be used to check if an argument is an array.
Array.try_convert([1]) #=> [1] Array.try_convert("1") #=> nil if tmp = Array.try_convert(arg) # the argument is an array elsif tmp = String.try_convert(arg) # the argument is a string end

  
  
  
  
  
  