class DefaultUserView
- DefaultUserView
- Template
- Reference
- Object
Defined in:
main.crConstructors
Instance Method Summary
-
#to_s(__tplio__ : IO)
Appends a short String representation of this object which includes its class name and its object address.
- #user : User
Instance methods inherited from class Template
end_tag(io : IO, name : String)
end_tag,
main_docking_point : DockingPoint
main_docking_point,
main_docking_point=(main_docking_point : DockingPoint)
main_docking_point=,
standalone_tag(io, name, *attrs)
standalone_tag,
start_tag(io, name, *attrs)
start_tag,
tag(io, name, *attrs, &)tag(io, name, *attrs) tag, tag_begin(io : IO, name : String, arg)
tag_begin(io : IO, name : String)
tag_begin(io : IO, name : String, *args) tag_begin
Constructor methods inherited from class Template
new(main_docking_point : String | Template | Nil)new new
Constructor Detail
Instance Method Detail
def to_s(__tplio__ : IO)
#
Description copied from class Reference
Appends a short String representation of this object which includes its class name and its object address.
class Person
def initialize(@name : String, @age : Int32)
end
end
Person.new("John", 32).to_s # => #<Person:0x10a199f20>