method
type
v1_8_6_287 -
Show latest stable
-
0 notes -
Class: Object
- 1_8_6_287 (0)
- 1_8_7_72 (0)
- 1_8_7_330 (0)
- 1_9_1_378
- 1_9_2_180
- 1_9_3_125
- 1_9_3_392
- What's this?
Related methods
- Class methods (4)
-
json_create
(>= v1_9_1_378)
-
new
-
version
(>= v1_9_1_378)
-
yaml_tag
(>= v1_9_3_125)
- Instance methods (124)
-
<=>
(>= v1_9_2_180)
-
=~
-
==
-
===
-
!~
(>= v1_9_1_378)
-
check_signedness
(>= v1_9_2_180)
-
check_sizeof
(>= v1_9_1_378)
-
chmod
(>= v1_9_1_378)
-
class
-
clone
-
convertible_int
(>= v1_9_3_125)
-
cp
(>= v1_9_1_378)
-
create_docfile
(>= v1_9_1_378)
-
create_header
(>= v1_9_1_378)
-
create_makefile
(>= v1_9_1_378)
-
create_win32ole_makefile
(>= v1_9_1_378)
-
CSV
(>= v1_9_1_378)
-
dclone
-
default_handler
(>= v1_9_1_378)
-
default_src_encoding
(>= v1_9_1_378)
-
define_singleton_method
(>= v1_9_1_378)
-
DelegateClass
(>= v1_9_1_378)
-
depend_rules
(>= v1_9_1_378)
-
Digest
(>= v1_9_3_125)
-
dir_config
(>= v1_9_1_378)
-
display
-
dummy_makefile
(>= v1_9_1_378)
-
dup
-
enable_config
(>= v1_9_1_378)
-
enum_for
-
eql?
-
equal?
-
extend
-
find_executable
(>= v1_9_1_378)
-
find_header
(>= v1_9_1_378)
-
find_library
(>= v1_9_1_378)
-
find_type
(>= v1_9_1_378)
-
freeze
-
frozen?
-
__getobj__
(>= v1_9_1_378)
-
hash
-
have_const
(>= v1_9_1_378)
-
have_framework
(>= v1_9_3_125)
-
have_func
(>= v1_9_1_378)
-
have_header
(>= v1_9_1_378)
-
have_library
(>= v1_9_1_378)
-
have_macro
(>= v1_9_1_378)
-
have_struct_member
(>= v1_9_1_378)
-
have_type
(>= v1_9_1_378)
-
have_var
(>= v1_9_1_378)
-
help
(>= v1_9_1_378)
-
httpd
(>= v1_9_2_180)
-
id
-
__id__
-
initialize_clone
(>= v1_9_2_180)
-
initialize_copy
-
initialize_dup
(>= v1_9_2_180)
-
inspect
-
install
(>= v1_9_1_378)
-
instance_eval
-
instance_exec
(>= v1_8_7_72)
-
instance_of?
-
instance_variable_defined?
-
instance_variable_get
-
instance_variables
-
instance_variable_set
-
is_a?
-
kind_of?
-
listup
(>= v1_9_1_378)
-
ln
(>= v1_9_1_378)
-
method
-
methods
-
mkdir
(>= v1_9_1_378)
-
mkmf
(>= v1_9_1_378)
-
mv
(>= v1_9_1_378)
-
navigate
(>= v1_9_1_378)
-
nil?
-
object_id
-
pretty_print
(>= v1_9_1_378)
-
pretty_print_cycle
(>= v1_9_1_378)
-
private_methods
-
protected_methods
-
psych_to_yaml
(>= v1_9_3_125)
-
public_method
(>= v1_9_1_378)
-
public_methods
-
public_send
(>= v1_9_1_378)
-
remove_instance_variable
-
respond_to?
-
respond_to_missing?
(>= v1_9_2_180)
-
rm
(>= v1_9_1_378)
-
rmdir
(>= v1_9_1_378)
-
send
-
__send__
-
__setobj__
(>= v1_9_1_378)
-
setup
(>= v1_9_1_378)
-
singleton_class
(>= v1_9_2_180)
-
singleton_method_added
-
singleton_method_removed
-
singleton_methods
-
singleton_method_undefined
-
stop_msg_loop
(>= v1_9_1_378)
-
sysread
(>= v1_9_1_378)
-
taint
-
tainted?
-
tap
(>= v1_8_7_72)
-
timeout
(>= v1_9_1_378)
-
to_a
-
to_enum
-
to_json
(>= v1_9_1_378)
-
to_s
-
touch
(>= v1_9_1_378)
-
to_yaml
-
to_yaml_properties
-
to_yaml_style
-
trust
(>= v1_9_1_378)
-
try_const
(>= v1_9_1_378)
-
try_type
(>= v1_9_1_378)
-
type
-
untaint
-
untrust
(>= v1_9_1_378)
-
untrusted?
(>= v1_9_1_378)
-
wait_writable
(>= v1_9_1_378)
-
with_config
(>= v1_9_1_378)
-
xmp
(>= v1_9_1_378)
= private
= protected
type()
public
Deprecated synonym for Object#class.
Show source
/* * call-seq: * obj.type => class * * Deprecated synonym for <code>Object#class</code>. */ VALUE rb_obj_type(obj) VALUE obj; { rb_warn("Object#type is deprecated; use Object#class"); return rb_class_real(CLASS_OF(obj)); }


