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 /
Range /
Delete
Unzip
Name
Size
Permission
Date
Action
%25-i.ri
1.09
KB
-rw-r--r--
2026-04-07 17:22
%3d%3d%3d-i.ri
1.14
KB
-rw-r--r--
2026-04-07 17:22
%3d%3d-i.ri
1.25
KB
-rw-r--r--
2026-04-07 17:22
as_json-i.ri
1.09
KB
-rw-r--r--
2026-04-07 17:22
begin-i.ri
508
B
-rw-r--r--
2026-04-07 17:22
bsearch-i.ri
445
B
-rw-r--r--
2026-04-07 17:22
cdesc-Range.ri
10.55
KB
-rw-r--r--
2026-04-07 17:22
count-i.ri
1.24
KB
-rw-r--r--
2026-04-07 17:22
cover%3f-i.ri
4.44
KB
-rw-r--r--
2026-04-07 17:22
each-i.ri
698
B
-rw-r--r--
2026-04-07 17:22
end-i.ri
521
B
-rw-r--r--
2026-04-07 17:22
entries-i.ri
581
B
-rw-r--r--
2026-04-07 17:22
eql%3f-i.ri
1.27
KB
-rw-r--r--
2026-04-07 17:22
exclude_end%3f-i.ri
648
B
-rw-r--r--
2026-04-07 17:22
first-i.ri
848
B
-rw-r--r--
2026-04-07 17:22
hash-i.ri
500
B
-rw-r--r--
2026-04-07 17:22
include%3f-i.ri
1.15
KB
-rw-r--r--
2026-04-07 17:22
inspect-i.ri
797
B
-rw-r--r--
2026-04-07 17:22
json_create-c.ri
310
B
-rw-r--r--
2026-04-07 17:22
last-i.ri
1.23
KB
-rw-r--r--
2026-04-07 17:22
max-i.ri
3
KB
-rw-r--r--
2026-04-07 17:22
member%3f-i.ri
1.18
KB
-rw-r--r--
2026-04-07 17:22
min-i.ri
3
KB
-rw-r--r--
2026-04-07 17:22
minmax-i.ri
1.99
KB
-rw-r--r--
2026-04-07 17:22
new-c.ri
819
B
-rw-r--r--
2026-04-07 17:22
overlap%3f-i.ri
2.71
KB
-rw-r--r--
2026-04-07 17:22
reverse_each-i.ri
786
B
-rw-r--r--
2026-04-07 17:22
size-i.ri
663
B
-rw-r--r--
2026-04-07 17:22
step-i.ri
1.52
KB
-rw-r--r--
2026-04-07 17:22
to_a-i.ri
598
B
-rw-r--r--
2026-04-07 17:22
to_json-i.ri
689
B
-rw-r--r--
2026-04-07 17:22
to_s-i.ri
773
B
-rw-r--r--
2026-04-07 17:22
Save
Rename
U:RDoc::AnyMethod[iI"max:ETI"Range#max;TF:privateo:RDoc::Markup::Document:@parts[&o:RDoc::Markup::Paragraph; [I"*Returns the maximum value in +self+, ;TI"?using method <tt><=></tt> or a given block for comparison.;To:RDoc::Markup::BlankLine o; ; [I"*With no argument and no block given, ;TI"2returns the maximum-valued element of +self+.;T@o:RDoc::Markup::Verbatim; [I"(1..4).max # => 4 ;TI"('a'..'d').max # => "d" ;TI"(-4..-1).max # => -1 ;T:@format0o; ; [I"GWith non-negative integer argument +n+ given, and no block given, ;TI"Creturns the +n+ maximum-valued elements of +self+ in an array:;T@o;; [ I"#(1..4).max(2) # => [4, 3] ;TI"'('a'..'d').max(2) # => ["d", "c"] ;TI"%(-4..-1).max(2) # => [-1, -2] ;TI")(1..4).max(50) # => [4, 3, 2, 1] ;T; 0o; ; [I"'If a block is given, it is called:;T@o:RDoc::Markup::List: @type:BULLET:@items[o:RDoc::Markup::ListItem:@label0; [o; ; [I"1First, with the first two element of +self+.;To;;0; [o; ; [I"VThen, sequentially, with the so-far maximum value and the next element of +self+.;T@o; ; [I"To illustrate:;T@o;; [I"3(1..4).max {|a, b| p [a, b]; a <=> b } # => 4 ;T; 0o; ; [I"Output:;T@o;; [I"[2, 1] ;TI"[3, 2] ;TI"[4, 3] ;T; 0o; ; [I")With no argument and a block given, ;TI"<returns the return value of the last call to the block:;T@o;; [I",(1..4).max {|a, b| -(a <=> b) } # => 1 ;T; 0o; ; [I"FWith non-negative integer argument +n+ given, and a block given, ;TI"Nreturns the return values of the last +n+ calls to the block in an array:;T@o;; [I"5(1..4).max(2) {|a, b| -(a <=> b) } # => [1, 2] ;TI";(1..4).max(50) {|a, b| -(a <=> b) } # => [1, 2, 3, 4] ;T; 0o; ; [I"+Returns an empty array if +n+ is zero:;T@o;; [I"0(1..4).max(0) # => [] ;TI"0(1..4).max(0) {|a, b| -(a <=> b) } # => [] ;T; 0o; ; [I"(Returns +nil+ or an empty array if:;T@o;;;;[o;;0; [o; ; [I"?The begin value of the range is larger than the end value:;T@o;; [ I"1(4..1).max # => nil ;TI"0(4..1).max(2) # => [] ;TI"1(4..1).max {|a, b| -(a <=> b) } # => nil ;TI"0(4..1).max(2) {|a, b| -(a <=> b) } # => [] ;T; 0o;;0; [o; ; [I"EThe begin value of an exclusive range is equal to the end value:;T@o;; [ I"3(1...1).max # => nil ;TI"2(1...1).max(2) # => [] ;TI"3(1...1).max {|a, b| -(a <=> b) } # => nil ;TI"2(1...1).max(2) {|a, b| -(a <=> b) } # => [] ;T; 0o; ; [I"#Raises an exception if either:;T@o;;;;[o;;0; [o; ; [I"/+self+ is a endless range: <tt>(1..)</tt>.;To;;0; [o; ; [I"6A block is given and +self+ is a beginless range.;T@o; ; [I"&Related: Range#min, Range#minmax.;T: @fileI"range.c;T:0@omit_headings_from_table_of_contents_below0I"]max -> object max(n) -> array max {|a, b| ... } -> object max(n) {|a, b| ... } -> array ;T0[ I"(*args);T@~FI" Range;TcRDoc::NormalClass00