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.37
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby31 /
share /
ri /
system /
Symbol /
Delete
Unzip
Name
Size
Permission
Date
Action
%3c%3d%3e-i.ri
671
B
-rw-r--r--
2025-04-28 21:06
%3d%3d%3d-i.ri
371
B
-rw-r--r--
2025-04-28 21:06
%3d%3d-i.ri
407
B
-rw-r--r--
2025-04-28 21:06
%3d%7e-i.ri
329
B
-rw-r--r--
2025-04-28 21:06
%5b%5d-i.ri
419
B
-rw-r--r--
2025-04-28 21:06
all_symbols-c.ri
902
B
-rw-r--r--
2025-04-28 21:06
as_json-i.ri
374
B
-rw-r--r--
2025-04-28 21:06
capitalize-i.ri
425
B
-rw-r--r--
2025-04-28 21:06
casecmp%3f-i.ri
1.18
KB
-rw-r--r--
2025-04-28 21:06
casecmp-i.ri
1.07
KB
-rw-r--r--
2025-04-28 21:06
cdesc-Symbol.ri
7.02
KB
-rw-r--r--
2025-04-28 21:06
downcase-i.ri
455
B
-rw-r--r--
2025-04-28 21:06
empty%3f-i.ri
333
B
-rw-r--r--
2025-04-28 21:06
encoding-i.ri
364
B
-rw-r--r--
2025-04-28 21:06
end_with%3f-i.ri
680
B
-rw-r--r--
2025-04-28 21:06
id2name-i.ri
589
B
-rw-r--r--
2025-04-28 21:06
inspect-i.ri
456
B
-rw-r--r--
2025-04-28 21:06
intern-i.ri
496
B
-rw-r--r--
2025-04-28 21:06
json_create-c.ri
392
B
-rw-r--r--
2025-04-28 21:06
length-i.ri
368
B
-rw-r--r--
2025-04-28 21:06
match%3f-i.ri
398
B
-rw-r--r--
2025-04-28 21:06
match-i.ri
399
B
-rw-r--r--
2025-04-28 21:06
name-i.ri
602
B
-rw-r--r--
2025-04-28 21:06
next-i.ri
313
B
-rw-r--r--
2025-04-28 21:06
size-i.ri
310
B
-rw-r--r--
2025-04-28 21:06
slice-i.ri
308
B
-rw-r--r--
2025-04-28 21:06
start_with%3f-i.ri
811
B
-rw-r--r--
2025-04-28 21:06
succ-i.ri
329
B
-rw-r--r--
2025-04-28 21:06
swapcase-i.ri
415
B
-rw-r--r--
2025-04-28 21:06
to_json-i.ri
368
B
-rw-r--r--
2025-04-28 21:06
to_proc-i.ri
466
B
-rw-r--r--
2025-04-28 21:06
to_s-i.ri
642
B
-rw-r--r--
2025-04-28 21:06
to_sym-i.ri
448
B
-rw-r--r--
2025-04-28 21:06
upcase-i.ri
405
B
-rw-r--r--
2025-04-28 21:06
Save
Rename
U:RDoc::NormalClass[iI"Symbol:ET@I"Object;To:RDoc::Markup::Document:@parts[o;;[ : @fileI"$ext/json/lib/json/add/symbol.rb;T:0@omit_headings_from_table_of_contents_below0o;;[#o:RDoc::Markup::Paragraph;[I"LSymbol objects represent named identifiers inside the Ruby interpreter.;To:RDoc::Markup::BlankLine o;;[I"5You can create a \Symbol object explicitly with:;T@o:RDoc::Markup::List: @type:BULLET:@items[o:RDoc::Markup::ListItem:@label0;[o;;[I"MA {symbol literal}[doc/syntax/literals_rdoc.html#label-Symbol+Literals].;T@o;;[I"$The same Symbol object will be ;TI"Hcreated for a given name or string for the duration of a program's ;TI"Hexecution, regardless of the context or meaning of that name. Thus ;TI"Dif <code>Fred</code> is a constant in one context, a method in ;TI"Danother, and a class in a third, the Symbol <code>:Fred</code> ;TI"3will be the same object in all three contexts.;T@o:RDoc::Markup::Verbatim;[I"module One ;TI" class Fred ;TI" end ;TI" $f1 = :Fred ;TI" end ;TI"module Two ;TI" Fred = 1 ;TI" $f2 = :Fred ;TI" end ;TI"def Fred() ;TI" end ;TI"$f3 = :Fred ;TI"!$f1.object_id #=> 2514190 ;TI"!$f2.object_id #=> 2514190 ;TI"!$f3.object_id #=> 2514190 ;T:@format0o;;[I"BConstant, method, and variable names are returned as symbols:;T@o;;[I"module One ;TI" Two = 2 ;TI" def three; 3 end ;TI" @four = 4 ;TI" @@five = 5 ;TI" $six = 6 ;TI" end ;TI"seven = 7 ;TI" ;TI"One.constants ;TI"# => [:Two] ;TI" One.instance_methods(true) ;TI"# => [:three] ;TI"One.instance_variables ;TI"# => [:@four] ;TI"One.class_variables ;TI"# => [:@@five] ;TI""global_variables.grep(/six/) ;TI"# => [:$six] ;TI"local_variables ;TI"# => [:seven] ;T;0o;;[I">Symbol objects are different from String objects in that ;TI"@Symbol objects represent identifiers, while String objects ;TI"represent text or data.;T@S:RDoc::Markup::Heading: leveli: textI"What's Here;T@o;;[I"-First, what's elsewhere. \Class \Symbol:;T@o; ;;;[o;;0;[o;;[I"PInherits from {class Object}[Object.html#class-Object-label-What-27s+Here].;To;;0;[o;;[I"YIncludes {module Comparable}[Comparable.html#module-Comparable-label-What-27s+Here].;T@o;;[I">Here, class \Symbol provides methods that are useful for:;T@o; ;;;[o;;0;[o;;[I"9{Querying}[#class-Symbol-label-Methods+for+Querying];To;;0;[o;;[I";{Comparing}[#class-Symbol-label-Methods+for+Comparing];To;;0;[o;;[I"={Converting}[#class-Symbol-label-Methods+for+Converting];T@S;;i;I"Methods for Querying;T@o; ;;;[o;;0;[o; ;: NOTE;[o;;[I"::all_symbols;T;[o;;[I"FReturns an array of the symbols currently in Ruby's symbol table.;To;;0;[o; ;;;[o;;[I"{#=~}[#method-i-3D~];T;[o;;[I".Returns the index of the first substring ;TI"+in symbol that matches a given Regexp ;TI"9or other object; returns +nil+ if no match is found.;To;;0;[o; ;;;[o;;[I"#[], #slice ;T;[o;;[I"#Returns a substring of symbol ;TI"Ddetermined by a given index, start/length, or range, or string.;To;;0;[o; ;;;[o;;[I"#empty?;T;[o;;[I"@Returns +true+ if +self.length+ is zero; +false+ otherwise.;To;;0;[o; ;;;[o;;[I"#encoding;T;[o;;[I">Returns the Encoding object that represents the encoding ;TI"of symbol.;To;;0;[o; ;;;[o;;[I"#end_with?;T;[o;;[I"(Returns +true+ if symbol ends with ;TI"any of the given strings.;To;;0;[o; ;;;[o;;[I"#match;T;[o;;[I"*Returns a MatchData object if symbol ;TI"-matches a given Regexp; +nil+ otherwise.;To;;0;[o; ;;;[o;;[I"#match?;T;[o;;[I"Returns +true+ if symbol ;TI"/matches a given Regexp; +false+ otherwise.;To;;0;[o; ;;;[o;;[I"#length, #size;T;[o;;[I"0Returns the number of characters in symbol.;To;;0;[o; ;;;[o;;[I"#start_with?;T;[o;;[I"*Returns +true+ if symbol starts with ;TI"any of the given strings.;T@S;;i;I"Methods for Comparing;T@o; ;;;[ o;;0;[o; ;;;[o;;[I"{#<=>}[#method-i-3C-3D-3E];T;[o;;[I"\Returns -1, 0, or 1 as a given symbol is smaller than, equal to, or larger than symbol.;To;;0;[o; ;;;[o;;[I"!{#==, #===}[#method-i-3D-3D];T;[o;;[I"&Returns +true+ if a given symbol ;TI"'has the same content and encoding.;To;;0;[o; ;;;[o;;[I" #casecmp;T;[o;;[I"3Ignoring case, returns -1, 0, or 1 as a given ;TI"=symbol is smaller than, equal to, or larger than symbol.;To;;0;[o; ;;;[o;;[I"#casecmp?;T;[o;;[I"9Returns +true+ if symbol is equal to a given symbol ;TI"3after Unicode case folding; +false+ otherwise.;T@S;;i;I"Methods for Converting;T@o; ;;;[o;;0;[o; ;;;[o;;[I"#capitalize;T;[o;;[I"5Returns symbol with the first character upcased ;TI"(and all other characters downcased.;To;;0;[o; ;;;[o;;[I"#downcase;T;[o;;[I"2Returns symbol with all characters downcased.;To;;0;[o; ;;;[o;;[I" #inspect;T;[o;;[I"EReturns the string representation of +self+ as a symbol literal.;To;;0;[o; ;;;[o;;[I" #name;T;[o;;[I"7Returns the frozen string corresponding to symbol.;To;;0;[o; ;;;[o;;[I"#succ, #next;T;[o;;[I"8Returns the symbol that is the successor to symbol.;To;;0;[o; ;;;[o;;[I"#swapcase;T;[o;;[I"9Returns symbol with all upcase characters downcased ;TI")and all downcase characters upcased.;To;;0;[o; ;;;[o;;[I" #to_proc;T;[o;;[I"HReturns a Proc object which responds to the method named by symbol.;To;;0;[o; ;;;[o;;[I"#to_s, #id2name;T;[o;;[I"0Returns the string corresponding to +self+.;To;;0;[o; ;;;[o;;[I"#to_sym, #intern;T;[o;;[I"Returns +self+.;To;;0;[o; ;;;[o;;[I"#upcase;T;[o;;[I"0Returns symbol with all characters upcased.;T; I" string.c;T; 0; 0; 0[ [ [[I"Comparable;To;;[ ; @�; 0I" string.c;T[[I" class;T[[:public[ [:protected[ [:private[[I"all_symbols;T@�[I"json_create;TI"$ext/json/lib/json/add/symbol.rb;T[I" instance;T[[;[ [;[ [;[$[I"<=>;T@�[I"==;T@�[I"===;T@�[I"=~;T@�[I"[];T@�[I"as_json;T@�[I"capitalize;T@�[I"casecmp;T@�[I" casecmp?;T@�[I" downcase;T@�[I"empty?;T@�[I" encoding;T@�[I"end_with?;T@�[I"id2name;T@�[I"inspect;T@�[I"intern;T@�[I"length;T@�[I" match;T@�[I"match?;T@�[I" name;T@�[I" next;T@�[I" size;T@�[I" slice;T@�[I"start_with?;T@�[I" succ;T@�[I" swapcase;T@�[I"to_json;T@�[I"to_proc;T@�[I" to_s;T@�[I"to_sym;T@�[I"upcase;T@�[ [U:RDoc::Context::Section[i 0o;;[ ; 0; 0[I"$ext/json/lib/json/add/symbol.rb;TI" string.c;T@�cRDoc::TopLevel