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.103
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby33 /
share /
ri /
system /
Numeric /
Delete
Unzip
Name
Size
Permission
Date
Action
%25-i.ri
1.18
KB
-rw-r--r--
2026-04-07 17:22
%2b%40-i.ri
290
B
-rw-r--r--
2026-04-07 17:22
%2d%40-i.ri
322
B
-rw-r--r--
2026-04-07 17:22
%3c%3d%3e-i.ri
474
B
-rw-r--r--
2026-04-07 17:22
abs-i.ri
491
B
-rw-r--r--
2026-04-07 17:22
abs2-i.ri
307
B
-rw-r--r--
2026-04-07 17:22
angle-i.ri
330
B
-rw-r--r--
2026-04-07 17:22
arg-i.ri
371
B
-rw-r--r--
2026-04-07 17:22
cdesc-Numeric.ri
8.45
KB
-rw-r--r--
2026-04-07 17:22
ceil-i.ri
556
B
-rw-r--r--
2026-04-07 17:22
clone-i.ri
469
B
-rw-r--r--
2026-04-07 17:22
coerce-i.ri
1.45
KB
-rw-r--r--
2026-04-07 17:22
conj-i.ri
242
B
-rw-r--r--
2026-04-07 17:22
conjugate-i.ri
332
B
-rw-r--r--
2026-04-07 17:22
denominator-i.ri
351
B
-rw-r--r--
2026-04-07 17:22
div-i.ri
604
B
-rw-r--r--
2026-04-07 17:22
divmod-i.ri
1.29
KB
-rw-r--r--
2026-04-07 17:22
dup-i.ri
355
B
-rw-r--r--
2026-04-07 17:22
eql%3f-i.ri
875
B
-rw-r--r--
2026-04-07 17:22
fdiv-i.ri
581
B
-rw-r--r--
2026-04-07 17:22
finite%3f-i.ri
360
B
-rw-r--r--
2026-04-07 17:22
floor-i.ri
556
B
-rw-r--r--
2026-04-07 17:22
i-i.ri
571
B
-rw-r--r--
2026-04-07 17:22
imag-i.ri
242
B
-rw-r--r--
2026-04-07 17:22
imaginary-i.ri
327
B
-rw-r--r--
2026-04-07 17:22
infinite%3f-i.ri
415
B
-rw-r--r--
2026-04-07 17:22
integer%3f-i.ri
466
B
-rw-r--r--
2026-04-07 17:22
magnitude-i.ri
476
B
-rw-r--r--
2026-04-07 17:22
modulo-i.ri
1.15
KB
-rw-r--r--
2026-04-07 17:22
negative%3f-i.ri
361
B
-rw-r--r--
2026-04-07 17:22
nonzero%3f-i.ri
861
B
-rw-r--r--
2026-04-07 17:22
numerator-i.ri
325
B
-rw-r--r--
2026-04-07 17:22
phase-i.ri
330
B
-rw-r--r--
2026-04-07 17:22
polar-i.ri
326
B
-rw-r--r--
2026-04-07 17:22
positive%3f-i.ri
364
B
-rw-r--r--
2026-04-07 17:22
quo-i.ri
400
B
-rw-r--r--
2026-04-07 17:22
real%3f-i.ri
352
B
-rw-r--r--
2026-04-07 17:22
real-i.ri
294
B
-rw-r--r--
2026-04-07 17:22
rect-i.ri
314
B
-rw-r--r--
2026-04-07 17:22
rectangular-i.ri
341
B
-rw-r--r--
2026-04-07 17:22
remainder-i.ri
1.24
KB
-rw-r--r--
2026-04-07 17:22
round-i.ri
536
B
-rw-r--r--
2026-04-07 17:22
step-i.ri
3.85
KB
-rw-r--r--
2026-04-07 17:22
to_c-i.ri
316
B
-rw-r--r--
2026-04-07 17:22
to_int-i.ri
765
B
-rw-r--r--
2026-04-07 17:22
truncate-i.ri
541
B
-rw-r--r--
2026-04-07 17:22
zero%3f-i.ri
492
B
-rw-r--r--
2026-04-07 17:22
Save
Rename
U:RDoc::AnyMethod[iI" step:ETI"Numeric#step;TF:privateo:RDoc::Markup::Document:@parts[ o:RDoc::Markup::Verbatim; [MI"RGenerates a sequence of numbers; with a block given, traverses the sequence. ;TI" ;TI"/Of the Core and Standard Library classes, ;TI";Integer, Float, and Rational use this implementation. ;TI" ;TI"A quick example: ;TI" ;TI" squares = [] ;TI"6 1.step(by: 2, to: 10) {|i| squares.push(i*i) } ;TI"' squares # => [1, 9, 25, 49, 81] ;TI" ;TI"The generated sequence: ;TI" ;TI"- Begins with +self+. ;TI"?- Continues at intervals of +by+ (which may not be zero). ;TI"B- Ends with the last number that is within or equal to +to+; ;TI"@ that is, less than or equal to +to+ if +by+ is positive, ;TI": greater than or equal to +to+ if +by+ is negative. ;TI"= If +to+ is +nil+, the sequence is of infinite length. ;TI" ;TI"LIf a block is given, calls the block with each number in the sequence; ;TI"Wreturns +self+. If no block is given, returns an Enumerator::ArithmeticSequence. ;TI" ;TI"<b>Keyword Arguments</b> ;TI" ;TI"+With keyword arguments +by+ and +to+, ;TI">their values (or defaults) determine the step and limit: ;TI" ;TI" # Both keywords given. ;TI" squares = [] ;TI"@ 4.step(by: 2, to: 10) {|i| squares.push(i*i) } # => 4 ;TI"& squares # => [16, 36, 64, 100] ;TI" cubes = [] ;TI"@ 3.step(by: -1.5, to: -3) {|i| cubes.push(i*i*i) } # => 3 ;TI"6 cubes # => [27.0, 3.375, 0.0, -3.375, -27.0] ;TI" squares = [] ;TI"; 1.2.step(by: 0.2, to: 2.0) {|f| squares.push(f*f) } ;TI"N squares # => [1.44, 1.9599999999999997, 2.5600000000000005, 3.24, 4.0] ;TI" ;TI" squares = [] ;TI"E Rational(6/5).step(by: 0.2, to: 2.0) {|r| squares.push(r*r) } ;TI"S squares # => [1.0, 1.44, 1.9599999999999997, 2.5600000000000005, 3.24, 4.0] ;TI" ;TI" # Only keyword to given. ;TI" squares = [] ;TI"@ 4.step(to: 10) {|i| squares.push(i*i) } # => 4 ;TI"2 squares # => [16, 25, 36, 49, 64, 81, 100] ;TI" # Only by given. ;TI" ;TI" # Only keyword by given ;TI" squares = [] ;TI"> 4.step(by:2) {|i| squares.push(i*i); break if i > 10 } ;TI"+ squares # => [16, 36, 64, 100, 144] ;TI" ;TI" # No block given. ;TI"D e = 3.step(by: -1.5, to: -3) # => (3.step(by: -1.5, to: -3)) ;TI"H e.class # => Enumerator::ArithmeticSequence ;TI" ;TI"!<b>Positional Arguments</b> ;TI" ;TI"7With optional positional arguments +to+ and +by+, ;TI">their values (or defaults) determine the step and limit: ;TI" ;TI" squares = [] ;TI"8 4.step(10, 2) {|i| squares.push(i*i) } # => 4 ;TI"& squares # => [16, 36, 64, 100] ;TI" squares = [] ;TI"+ 4.step(10) {|i| squares.push(i*i) } ;TI"2 squares # => [16, 25, 36, 49, 64, 81, 100] ;TI" squares = [] ;TI"B 4.step {|i| squares.push(i*i); break if i > 10 } # => nil ;TI"7 squares # => [16, 25, 36, 49, 64, 81, 100, 121] ;T:@format0o:RDoc::Markup::Paragraph; [I" <b>Implementation Notes</b>;To:RDoc::Markup::BlankLine o; ; [I"KIf all the arguments are integers, the loop operates using an integer ;TI"counter. ;TI" ;TI"KIf any of the arguments are floating point numbers, all are converted ;TI")to floats, and the loop is executed ;TI"3<i>floor(n + n*Float::EPSILON) + 1</i> times, ;TI"*where <i>n = (limit - self)/step</i>.;T;0: @fileI"numeric.c;T:0@omit_headings_from_table_of_contents_below0I"pstep(to = nil, by = 1) {|n| ... } -> self step(to = nil, by = 1) -> enumerator step(to = nil, by: 1) {|n| ... } -> self step(to = nil, by: 1) -> enumerator step(by: 1, to: ) {|n| ... } -> self step(by: 1, to: ) -> enumerator step(by: , to: nil) {|n| ... } -> self step(by: , to: nil) -> enumerator ;T0[ I"(*args);T@bFI"Numeric;TcRDoc::NormalClass00