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.216.198
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby32 /
share /
ri /
system /
Numeric /
Delete
Unzip
Name
Size
Permission
Date
Action
%25-i.ri
1.24
KB
-rw-r--r--
2026-04-07 17:42
%2b%40-i.ri
290
B
-rw-r--r--
2026-04-07 17:42
%2d%40-i.ri
322
B
-rw-r--r--
2026-04-07 17:42
%3c%3d%3e-i.ri
474
B
-rw-r--r--
2026-04-07 17:42
abs-i.ri
553
B
-rw-r--r--
2026-04-07 17:42
abs2-i.ri
307
B
-rw-r--r--
2026-04-07 17:42
angle-i.ri
324
B
-rw-r--r--
2026-04-07 17:42
arg-i.ri
422
B
-rw-r--r--
2026-04-07 17:42
cdesc-Numeric.ri
8.45
KB
-rw-r--r--
2026-04-07 17:42
ceil-i.ri
556
B
-rw-r--r--
2026-04-07 17:42
clone-i.ri
469
B
-rw-r--r--
2026-04-07 17:42
coerce-i.ri
1.45
KB
-rw-r--r--
2026-04-07 17:42
conj-i.ri
242
B
-rw-r--r--
2026-04-07 17:42
conjugate-i.ri
365
B
-rw-r--r--
2026-04-07 17:42
denominator-i.ri
351
B
-rw-r--r--
2026-04-07 17:42
div-i.ri
604
B
-rw-r--r--
2026-04-07 17:42
divmod-i.ri
1.29
KB
-rw-r--r--
2026-04-07 17:42
dup-i.ri
355
B
-rw-r--r--
2026-04-07 17:42
eql%3f-i.ri
875
B
-rw-r--r--
2026-04-07 17:42
fdiv-i.ri
581
B
-rw-r--r--
2026-04-07 17:42
finite%3f-i.ri
373
B
-rw-r--r--
2026-04-07 17:42
floor-i.ri
556
B
-rw-r--r--
2026-04-07 17:42
i-i.ri
571
B
-rw-r--r--
2026-04-07 17:42
imag-i.ri
242
B
-rw-r--r--
2026-04-07 17:42
imaginary-i.ri
359
B
-rw-r--r--
2026-04-07 17:42
infinite%3f-i.ri
432
B
-rw-r--r--
2026-04-07 17:42
integer%3f-i.ri
473
B
-rw-r--r--
2026-04-07 17:42
magnitude-i.ri
538
B
-rw-r--r--
2026-04-07 17:42
modulo-i.ri
1.21
KB
-rw-r--r--
2026-04-07 17:42
negative%3f-i.ri
361
B
-rw-r--r--
2026-04-07 17:42
nonzero%3f-i.ri
861
B
-rw-r--r--
2026-04-07 17:42
numerator-i.ri
325
B
-rw-r--r--
2026-04-07 17:42
phase-i.ri
324
B
-rw-r--r--
2026-04-07 17:42
polar-i.ri
325
B
-rw-r--r--
2026-04-07 17:42
positive%3f-i.ri
364
B
-rw-r--r--
2026-04-07 17:42
quo-i.ri
400
B
-rw-r--r--
2026-04-07 17:42
real%3f-i.ri
357
B
-rw-r--r--
2026-04-07 17:42
real-i.ri
298
B
-rw-r--r--
2026-04-07 17:42
rect-i.ri
308
B
-rw-r--r--
2026-04-07 17:42
rectangular-i.ri
368
B
-rw-r--r--
2026-04-07 17:42
remainder-i.ri
1.24
KB
-rw-r--r--
2026-04-07 17:42
round-i.ri
536
B
-rw-r--r--
2026-04-07 17:42
step-i.ri
3.87
KB
-rw-r--r--
2026-04-07 17:42
to_c-i.ri
318
B
-rw-r--r--
2026-04-07 17:42
to_int-i.ri
765
B
-rw-r--r--
2026-04-07 17:42
truncate-i.ri
541
B
-rw-r--r--
2026-04-07 17:42
zero%3f-i.ri
492
B
-rw-r--r--
2026-04-07 17:42
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"A- Continues at intervals of +step+ (which may not be zero). ;TI"E- Ends with the last number that is within or equal to +limit+; ;TI"E that is, less than or equal to +limit+ if +step+ is positive, ;TI"? greater than or equal to +limit+ if +step+ is negative. ;TI"D If +limit+ is not given, 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"<With optional positional arguments +limit+ and +step+, ;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