X7ROOT File Manager
Current Path:
/opt/alt/ruby18/share/ri/1.8/system/Module
opt
/
alt
/
ruby18
/
share
/
ri
/
1.8
/
system
/
Module
/
📄
%3c%3d%3e-i.yaml
(542 B)
📄
%3c%3d-i.yaml
(512 B)
📄
%3c-i.yaml
(476 B)
📄
%3d%3d%3d-i.yaml
(460 B)
📄
%3d%3d-i.yaml
(1.32 KB)
📄
%3e%3d-i.yaml
(515 B)
📄
%3e-i.yaml
(479 B)
ðŸ“
..
📄
alias_method-i.yaml
(754 B)
📄
ancestors-i.yaml
(515 B)
📄
append_features-i.yaml
(627 B)
📄
attr-i.yaml
(861 B)
📄
attr_accessor-i.yaml
(565 B)
📄
attr_reader-i.yaml
(427 B)
📄
attr_writer-i.yaml
(348 B)
📄
autoload%3f-i.yaml
(524 B)
📄
autoload-i.yaml
(593 B)
📄
cdesc-Module.yaml
(4.5 KB)
📄
class_eval-i.yaml
(1.02 KB)
📄
class_exec-i.yaml
(729 B)
📄
class_variable_defined%3f-i.yaml
(567 B)
📄
class_variable_get-i.yaml
(604 B)
📄
class_variable_set-i.yaml
(613 B)
📄
class_variables-i.yaml
(610 B)
📄
const_defined%3f-i.yaml
(442 B)
📄
const_get-i.yaml
(388 B)
📄
const_missing-i.yaml
(1.14 KB)
📄
const_set-i.yaml
(591 B)
📄
constants-c.yaml
(648 B)
📄
constants-i.yaml
(403 B)
📄
define_method-i.yaml
(1.27 KB)
📄
extend_object-i.yaml
(965 B)
📄
extended-i.yaml
(223 B)
📄
freeze-i.yaml
(263 B)
📄
include%3f-i.yaml
(577 B)
📄
include-i.yaml
(305 B)
📄
included-i.yaml
(686 B)
📄
included_modules-i.yaml
(507 B)
📄
instance_method-i.yaml
(1.08 KB)
📄
instance_methods-i.yaml
(1.07 KB)
📄
method_added-i.yaml
(231 B)
📄
method_defined%3f-i.yaml
(929 B)
📄
method_removed-i.yaml
(235 B)
📄
method_undefined-i.yaml
(239 B)
📄
module_eval-i.yaml
(1.03 KB)
📄
module_exec-i.yaml
(731 B)
📄
module_function-i.yaml
(1.16 KB)
📄
name-i.yaml
(267 B)
📄
nesting-c.yaml
(497 B)
📄
new-c.yaml
(787 B)
📄
private-i.yaml
(657 B)
📄
private_class_method-i.yaml
(621 B)
📄
private_instance_methods-i.yaml
(731 B)
📄
private_method_defined%3f-i.yaml
(904 B)
📄
protected-i.yaml
(441 B)
📄
protected_instance_methods-i.yaml
(472 B)
📄
protected_method_defined%3f-i.yaml
(926 B)
📄
public-i.yaml
(425 B)
📄
public_class_method-i.yaml
(324 B)
📄
public_instance_methods-i.yaml
(460 B)
📄
public_method_defined%3f-i.yaml
(902 B)
📄
remove_class_variable-i.yaml
(623 B)
📄
remove_const-i.yaml
(406 B)
📄
remove_method-i.yaml
(373 B)
📄
to_s-i.yaml
(397 B)
📄
undef_method-i.yaml
(1.14 KB)
Editing: const_missing-i.yaml
--- !ruby/object:RI::MethodDescription aliases: [] block_params: comment: - !ruby/struct:SM::Flow::P body: "Invoked when a reference is made to an undefined constant in <em>mod</em>. It is passed a symbol for the undefined constant, and returns a value to be used for that constant. The following code is a (very bad) example: if reference is made to an undefined constant, it attempts to load a file whose name is the lowercase version of the constant (thus class <tt>Fred</tt> is assumed to be in file <tt>fred.rb</tt>). If found, it returns the value of the loaded class. It therefore implements a perverse kind of autoload facility." - !ruby/struct:SM::Flow::VERB body: " def Object.const_missing(name)\n @looked_for ||= {}\n str_name = name.to_s\n raise "Class not found: #{name}" if @looked_for[str_name]\n @looked_for[str_name] = 1\n file = str_name.downcase\n require file\n klass = const_get(name)\n return klass if klass\n raise "Class not found: #{name}"\n end\n" full_name: Module#const_missing is_singleton: false name: const_missing params: | mod.const_missing(sym) => obj visibility: public
Upload File
Create Folder