Linux premium82.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
LiteSpeed
Server IP : 185.61.154.194 & Your IP : 216.73.216.77
Domains :
Cant Read [ /etc/named.conf ]
User : evicodqw
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby18 /
share /
ri /
1.8 /
system /
Numeric /
Delete
Unzip
Name
Size
Permission
Date
Action
%2b%40-i.yaml
255
B
-rw-r--r--
2023-07-26 13:47
%2d%40-i.yaml
269
B
-rw-r--r--
2023-07-26 13:47
%3c%3d%3e-i.yaml
301
B
-rw-r--r--
2023-07-26 13:47
abs-i.yaml
406
B
-rw-r--r--
2023-07-26 13:47
angle-i.yaml
218
B
-rw-r--r--
2023-07-26 13:47
arg-i.yaml
255
B
-rw-r--r--
2023-07-26 13:47
cdesc-Numeric.yaml
1.9
KB
-rw-r--r--
2023-07-26 13:47
ceil-i.yaml
566
B
-rw-r--r--
2023-07-26 13:47
coerce-i.yaml
792
B
-rw-r--r--
2023-07-26 13:47
conj-i.yaml
222
B
-rw-r--r--
2023-07-26 13:47
conjugate-i.yaml
312
B
-rw-r--r--
2023-07-26 13:47
div-i.yaml
393
B
-rw-r--r--
2023-07-26 13:47
divmod-i.yaml
2.04
KB
-rw-r--r--
2023-07-26 13:47
eql%3f-i.yaml
484
B
-rw-r--r--
2023-07-26 13:47
fdiv-i.yaml
331
B
-rw-r--r--
2023-07-26 13:47
floor-i.yaml
507
B
-rw-r--r--
2023-07-26 13:47
im-i.yaml
248
B
-rw-r--r--
2023-07-26 13:47
imag-i.yaml
218
B
-rw-r--r--
2023-07-26 13:47
image-i.yaml
289
B
-rw-r--r--
2023-07-26 13:47
integer%3f-i.yaml
349
B
-rw-r--r--
2023-07-26 13:47
modulo-i.yaml
313
B
-rw-r--r--
2023-07-26 13:47
nonzero%3f-i.yaml
706
B
-rw-r--r--
2023-07-26 13:47
polar-i.yaml
220
B
-rw-r--r--
2023-07-26 13:47
quo-i.yaml
329
B
-rw-r--r--
2023-07-26 13:47
real-i.yaml
254
B
-rw-r--r--
2023-07-26 13:47
remainder-i.yaml
596
B
-rw-r--r--
2023-07-26 13:47
round-i.yaml
380
B
-rw-r--r--
2023-07-26 13:47
singleton_method_added-i.yaml
330
B
-rw-r--r--
2023-07-26 13:47
step-i.yaml
1.3
KB
-rw-r--r--
2023-07-26 13:47
to_int-i.yaml
316
B
-rw-r--r--
2023-07-26 13:47
truncate-i.yaml
388
B
-rw-r--r--
2023-07-26 13:47
zero%3f-i.yaml
289
B
-rw-r--r--
2023-07-26 13:47
Save
Rename
--- !ruby/object:RI::MethodDescription aliases: [] block_params: comment: - !ruby/struct:SM::Flow::P body: Invokes <em>block</em> with the sequence of numbers starting at <em>num</em>, incremented by <em>step</em> on each call. The loop finishes when the value to be passed to the block is greater than <em>limit</em> (if <em>step</em> is positive) or less than <em>limit</em> (if <em>step</em> is negative). If all the arguments are integers, the loop operates using an integer counter. If any of the arguments are floating point numbers, all are converted to floats, and the loop is executed <em>floor(n + n*epsilon)+ 1</em> times, where <em>n = (limit - num)/step</em>. Otherwise, the loop starts at <em>num</em>, uses either the <tt><</tt> or <tt>></tt> operator to compare the counter against <em>limit</em>, and increments itself using the <tt>+</tt> operator. - !ruby/struct:SM::Flow::VERB body: " 1.step(10, 2) { |i| print i, " " }\n Math::E.step(Math::PI, 0.2) { |f| print f, " " }\n" - !ruby/struct:SM::Flow::P body: <em>produces:</em> - !ruby/struct:SM::Flow::VERB body: " 1 3 5 7 9\n 2.71828182845905 2.91828182845905 3.11828182845905\n" full_name: Numeric#step is_singleton: false name: step params: | num.step(limit, step ) {|i| block } => num visibility: public