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.222
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby19 /
share /
ri /
1.9.1 /
system /
Set /
Delete
Unzip
Name
Size
Permission
Date
Action
%26-i.ri
296
B
-rw-r--r--
2023-07-26 17:26
%2b-i.ri
132
B
-rw-r--r--
2023-07-26 17:26
%2d-i.ri
321
B
-rw-r--r--
2023-07-26 17:26
%3c%3c-i.ri
131
B
-rw-r--r--
2023-07-26 17:26
%3d%3d-i.ri
292
B
-rw-r--r--
2023-07-26 17:26
%5b%5d-c.ri
220
B
-rw-r--r--
2023-07-26 17:26
%5e-i.ri
340
B
-rw-r--r--
2023-07-26 17:26
%7c-i.ri
313
B
-rw-r--r--
2023-07-26 17:26
add%3f-i.ri
280
B
-rw-r--r--
2023-07-26 17:26
add-i.ri
292
B
-rw-r--r--
2023-07-26 17:26
cdesc-Set.ri
2.28
KB
-rw-r--r--
2023-07-26 17:26
classify-i.ri
768
B
-rw-r--r--
2023-07-26 17:26
clear-i.ri
212
B
-rw-r--r--
2023-07-26 17:26
collect%21-i.ri
265
B
-rw-r--r--
2023-07-26 17:26
delete%3f-i.ri
287
B
-rw-r--r--
2023-07-26 17:26
delete-i.ri
284
B
-rw-r--r--
2023-07-26 17:26
delete_if-i.ri
280
B
-rw-r--r--
2023-07-26 17:26
difference-i.ri
150
B
-rw-r--r--
2023-07-26 17:26
divide-i.ri
869
B
-rw-r--r--
2023-07-26 17:26
each-i.ri
325
B
-rw-r--r--
2023-07-26 17:26
empty%3f-i.ri
221
B
-rw-r--r--
2023-07-26 17:26
flatten%21-i.ri
308
B
-rw-r--r--
2023-07-26 17:26
flatten-i.ri
272
B
-rw-r--r--
2023-07-26 17:26
include%3f-i.ri
258
B
-rw-r--r--
2023-07-26 17:26
initialize_copy-i.ri
217
B
-rw-r--r--
2023-07-26 17:26
inspect-i.ri
293
B
-rw-r--r--
2023-07-26 17:26
intersection-i.ri
154
B
-rw-r--r--
2023-07-26 17:26
keep_if-i.ri
277
B
-rw-r--r--
2023-07-26 17:26
length-i.ri
138
B
-rw-r--r--
2023-07-26 17:26
map%21-i.ri
134
B
-rw-r--r--
2023-07-26 17:26
member%3f-i.ri
141
B
-rw-r--r--
2023-07-26 17:26
merge-i.ri
263
B
-rw-r--r--
2023-07-26 17:26
new-c.ri
393
B
-rw-r--r--
2023-07-26 17:26
proper_subset%3f-i.ri
255
B
-rw-r--r--
2023-07-26 17:26
proper_superset%3f-i.ri
261
B
-rw-r--r--
2023-07-26 17:26
reject%21-i.ri
260
B
-rw-r--r--
2023-07-26 17:26
replace-i.ri
287
B
-rw-r--r--
2023-07-26 17:26
select%21-i.ri
258
B
-rw-r--r--
2023-07-26 17:26
size-i.ri
229
B
-rw-r--r--
2023-07-26 17:26
subset%3f-i.ri
234
B
-rw-r--r--
2023-07-26 17:26
subtract-i.ri
273
B
-rw-r--r--
2023-07-26 17:26
superset%3f-i.ri
240
B
-rw-r--r--
2023-07-26 17:26
to_a-i.ri
238
B
-rw-r--r--
2023-07-26 17:26
union-i.ri
140
B
-rw-r--r--
2023-07-26 17:26
Save
Rename
U:RDoc::NormalClass[iI"Set:EF@I"Object;Fo:RDoc::Markup::Document:@parts[o;;[o:RDoc::Markup::Paragraph;[I"HSet implements a collection of unordered values with no duplicates.;TI"IThis is a hybrid of Array's intuitive inter-operation facilities and;TI"Hash's fast lookup.;To:RDoc::Markup::BlankLine o; ;[I"GThe equality of each couple of elements is determined according to;TI"AObject#eql? and Object#hash, since Set uses Hash as storage.;T@o; ;[ I"FSet is easy to use with Enumerable objects (implementing +each+).;TI"HMost of the initializer methods and binary operators accept generic;TI"FEnumerable objects besides sets and arrays. An Enumerable object;TI"7can be converted to Set using the +to_set+ method.;T@S:RDoc::Markup::Heading: leveli: textI"Example;T@o:RDoc::Markup::Verbatim;[ I"require 'set' ;FI"?s1 = Set.new [1, 2] # -> #<Set: {1, 2}> ;FI"?s2 = [1, 2].to_set # -> #<Set: {1, 2}> ;FI"5s1 == s2 # -> true ;FI"Fs1.add("foo") # -> #<Set: {1, 2, "foo"}> ;FI"Is1.merge([2, 6]) # -> #<Set: {6, 1, 2, "foo"}> ;FI"6s1.subset? s2 # -> false ;FI"5s2.subset? s1 # -> true ;FS;;i; I"Contact;T@o;;[I"<- Akinori MUSHA <knu@iDaemons.org> (current maintainer);F: @fileI"lib/set.rb;T;0[ [[I"InspectKey;Fo;;[ ;0@.[[I"Enumerable;Fo;;[ ;0@.[[I" class;F[[:public[[I"[];F@.[I"new;F@.[:protected[ [:private[ [I" instance;F[[;[.[I"&;F@.[I"+;F@.[I"-;F@.[I"<<;F@.[I"==;F@.[I"^;F@.[I"add;F@.[I" add?;F@.[I" classify;F@.[I" clear;F@.[I" collect!;F@.[I"delete;F@.[I"delete?;F@.[I"delete_if;F@.[I"difference;F@.[I"divide;F@.[I" each;F@.[I"empty?;F@.[I"flatten;F@.[I" flatten!;F@.[I" include?;F@.[I"initialize_copy;F@.[I"inspect;F@.[I"intersection;F@.[I"keep_if;F@.[I"length;F@.[I" map!;F@.[I"member?;F@.[I" merge;F@.[I"proper_subset?;F@.[I"proper_superset?;F@.[I"reject!;F@.[I"replace;F@.[I"select!;F@.[I" size;F@.[I"subset?;F@.[I" subtract;F@.[I"superset?;F@.[I" to_a;F@.[I" union;F@.[I"|;F@.[;[ [;[