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.45
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby20 /
share /
ri /
2.0.0 /
system /
Range /
Delete
Unzip
Name
Size
Permission
Date
Action
%3d%3d%3d-i.ri
773
B
-rw-r--r--
2023-07-26 17:38
%3d%3d-i.ri
680
B
-rw-r--r--
2023-07-26 17:38
as_json-i.ri
369
B
-rw-r--r--
2023-07-26 17:38
begin-i.ri
433
B
-rw-r--r--
2023-07-26 17:38
bsearch-i.ri
2.57
KB
-rw-r--r--
2023-07-26 17:38
cdesc-Range.ri
3.24
KB
-rw-r--r--
2023-07-26 17:38
cover%3f-i.ri
738
B
-rw-r--r--
2023-07-26 17:38
each-i.ri
937
B
-rw-r--r--
2023-07-26 17:38
end-i.ri
450
B
-rw-r--r--
2023-07-26 17:38
eql%3f-i.ri
692
B
-rw-r--r--
2023-07-26 17:38
exclude_end%3f-i.ri
519
B
-rw-r--r--
2023-07-26 17:38
first-i.ri
532
B
-rw-r--r--
2023-07-26 17:38
hash-i.ri
465
B
-rw-r--r--
2023-07-26 17:38
include%3f-i.ri
734
B
-rw-r--r--
2023-07-26 17:38
inspect-i.ri
412
B
-rw-r--r--
2023-07-26 17:38
json_create-c.ri
417
B
-rw-r--r--
2023-07-26 17:38
last-i.ri
753
B
-rw-r--r--
2023-07-26 17:38
max-i.ri
656
B
-rw-r--r--
2023-07-26 17:38
member%3f-i.ri
732
B
-rw-r--r--
2023-07-26 17:38
min-i.ri
659
B
-rw-r--r--
2023-07-26 17:38
new-c.ri
528
B
-rw-r--r--
2023-07-26 17:38
pretty_print-i.ri
232
B
-rw-r--r--
2023-07-26 17:38
size-i.ri
616
B
-rw-r--r--
2023-07-26 17:38
step-i.ri
1.09
KB
-rw-r--r--
2023-07-26 17:38
to_json-i.ri
481
B
-rw-r--r--
2023-07-26 17:38
to_s-i.ri
382
B
-rw-r--r--
2023-07-26 17:38
Save
Rename
U:RDoc::NormalClass[iI" Range:ET@I"Object;To:RDoc::Markup::Document:@parts[o;;[o:RDoc::Markup::Paragraph;[I"(Range serialization/deserialization;T: @fileI"#ext/json/lib/json/add/range.rb;T:0@omit_headings_from_table_of_contents_below0o;;[ ; I"lib/pp.rb;T;0o;;[o; ;[ I"JA <code>Range</code> represents an interval---a set of values with a ;TI"?beginning and an end. Ranges may be constructed using the ;TI"-<em>s</em><code>..</code><em>e</em> and ;TI"<<em>s</em><code>...</code><em>e</em> literals, or with ;TI":Range::new. Ranges constructed using <code>..</code> ;TI"Hrun from the beginning to the end inclusively. Those created using ;TI"G<code>...</code> exclude the end value. When used as an iterator, ;TI".ranges return each value in the sequence.;To:RDoc::Markup::BlankLine o:RDoc::Markup::Verbatim;[ I"(-1..-5).to_a #=> [] ;TI"1(-5..-1).to_a #=> [-5, -4, -3, -2, -1] ;TI"6('a'..'e').to_a #=> ["a", "b", "c", "d", "e"] ;TI"1('a'...'e').to_a #=> ["a", "b", "c", "d"] ;T:@format0S:RDoc::Markup::Heading: leveli: textI"Custom Objects in Ranges;T@ o; ;[I"FRanges can be constructed using any objects that can be compared ;TI"*using the <code><=></code> operator. ;TI"MMethods that treat the range as a sequence (#each and methods inherited ;TI"=from Enumerable) expect the begin object to implement a ;TI"E<code>succ</code> method to return the next object in sequence. ;TI"7The #step and #include? methods require the begin ;TI"<object to implement <code>succ</code> or to be numeric.;T@ o; ;[ I"BIn the <code>Xs</code> class below both <code><=></code> and ;TI"F<code>succ</code> are implemented so <code>Xs</code> can be used ;TI"Fto construct ranges. Note that the Comparable module is included ;TI"Kso the <code>==</code> method is defined in terms of <code><=></code>.;T@ o; ;[I":class Xs # represent a string of 'x's ;TI" include Comparable ;TI" attr :length ;TI" def initialize(n) ;TI" @length = n ;TI" end ;TI" def succ ;TI" Xs.new(@length + 1) ;TI" end ;TI" def <=>(other) ;TI"" @length <=> other.length ;TI" end ;TI" def to_s ;TI"+ sprintf "%2d #{inspect}", @length ;TI" end ;TI" def inspect ;TI" 'x' * @length ;TI" end ;TI" end ;T;0o; ;[I">An example of using <code>Xs</code> to construct a range:;T@ o; ;[I"0r = Xs.new(3)..Xs.new(6) #=> xxx..xxxxxx ;TI"?r.to_a #=> [xxx, xxxx, xxxxx, xxxxxx] ;TI"(r.member?(Xs.new(5)) #=> true;T;0; I"range.c;T;0; 0;0[ [ [[I"Enumerable;To;;[ ; @U;0I"range.c;T[[I" class;T[[:public[[I"json_create;FI"#ext/json/lib/json/add/range.rb;T[I"new;T@][:protected[ [:private[ [I" instance;T[[;[[I"==;T@][I"===;T@][I"as_json;F@f[I" begin;T@][I"bsearch;T@][I"cover?;T@][I" each;T@][I"end;T@][I" eql?;T@][I"exclude_end?;T@][I" first;T@][I" hash;T@][I" include?;T@][I"inspect;T@][I" last;T@][I"max;T@][I"member?;T@][I"min;T@][I"pretty_print;FI"lib/pp.rb;T[I" size;T@][I" step;T@][I"to_json;F@f[I" to_s;T@][;[ [;[ [ [U:RDoc::Context::Section[i 0o;;[ ; 0;0[@@@U@UcRDoc::TopLevel