class Aka::AliasList

Defined in:

aka.cr

Class Method Summary

Instance Method Summary

Instance methods inherited from class Object

error! error!, success! success!

Class Method Detail

def self.from_yaml(content : String) #

[View source]

Instance Method Detail

def aliases : Array(Aka::Alias) #

[View source]
def each(&) #

[View source]
def find?(invocation : String) : Alias | Nil #

[View source]
def size #

[View source]
def to_s(io : 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]