صفحة الصنف Integer
في روبي
< Ruby
يُطلق الخطأ IndexError
عندما يكون الفهرس المُعطى غير صالح.
a = [:foo, :bar]
a.fetch(0) #=> :foo
a[4] #=> nil
a.fetch(4) #=> IndexError: index 4 outside of array bounds: -2...2
Integer
في روبييُطلق الخطأ IndexError
عندما يكون الفهرس المُعطى غير صالح.
a = [:foo, :bar]
a.fetch(0) #=> :foo
a[4] #=> nil
a.fetch(4) #=> IndexError: index 4 outside of array bounds: -2...2