class MyView

Defined in:

main.cr

Constructors

Instance Method Summary

Macro Summary

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

def self.new(my_data : MyData) #

[View source]

Instance Method Detail

def my_data : MyData #

[View source]
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>

[View source]

Macro Detail

macro method_missing(call) #

[View source]