class Letter
- Letter
- Reference
- Object
Included Modules
- YAML::Serializable
Defined in:
example.crletter.cr
Constructors
- .new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)
- .new(*, paper : String, format : String, from, to, language : String, subject : String, opening : String, text : String, closing : String, date : Time = Time.local, place : String)
Instance Method Summary
- #closing : String
- #date : Time
- #format : String
- #from : Sender
- #language : String
- #opening : String
- #paper : String
- #place : String
- #stamp : Stamp | Nil
- #stamp=(stamp : Stamp | Nil)
- #subject : String
- #text : String
- #to : Recepient
-
#to_s(__io__ : IO) : Nil
Appends a short String representation of this object which includes its class name and its object address.
Constructor Detail
def self.new(*, paper : String, format : String, from, to, language : String, subject : String, opening : String, text : String, closing : String, date : Time = Time.local, place : String)
#
Instance Method Detail
def to_s(__io__ : IO) : Nil
#
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>