Class: Enumerator

Inherits:
Object
  • Object
show all
Defined in:
lib/cotcube-helpers/enum_ext.rb

Overview

Monkey patching the Ruby Core class Enumerator

Instance Method Summary collapse

Instance Method Details

#shy_peekObject



5
6
7
8
9
10
11
12
# File 'lib/cotcube-helpers/enum_ext.rb', line 5

def shy_peek
  begin
    ret = peek
  rescue StandardError
    ret = nil
  end
  ret
end