mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Raise exception from Range#first with beginless ranges.
This commit is contained in:
@@ -11,6 +11,7 @@ class Range
|
||||
# (10..20).first(3) #=> [10, 11, 12]
|
||||
#
|
||||
def first(*args)
|
||||
raise RangeError, "cannot get the first element of beginless range" if self.begin.nil?
|
||||
return self.begin if args.empty?
|
||||
|
||||
raise ArgumentError, "wrong number of arguments (given #{args.length}, expected 1)" unless args.length == 1
|
||||
|
||||
Reference in New Issue
Block a user