class Letter

Included Modules

Defined in:

example.cr
letter.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(ctx : YAML::ParseContext, node : YAML::Nodes::Node) #

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

[View source]

Instance Method Detail

def closing : String #

[View source]
def date : Time #

[View source]
def format : String #

[View source]
def from : Sender #

[View source]
def language : String #

[View source]
def opening : String #

[View source]
def paper : String #

[View source]
def place : String #

[View source]
def stamp : Stamp | Nil #

[View source]
def stamp=(stamp : Stamp | Nil) #

[View source]
def subject : String #

[View source]
def text : String #

[View source]
def to : Recepient #

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

[View source]