class

Planeta::Views::PageView

Inherits Blueprint::HTML < Blueprint::HTML::StandardElements < Blueprint::HTML::ElementRegistrar < Reference < Object

Constructors

new(entries : Array(FeedEntry), query : String | Nil, page : Int32, total_pages : Int32, total_entries : Int32, urls : Array(String), theme : String, authors : Array(String) = [] of String, author_filter : String | Nil = nil, locale : String = "en", render_time_us : Time::Span = Time::Span.zero, title : String = "Planeta")
Source

Instance methods

blueprint
Source
to_s(io : IO)

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>
Source