class Cryplot::Frame

Included Modules

Defined in:

plot/elems/frame.cr

Instance Method Summary

Instance methods inherited from module Cryplot::FrameMixin(Cryplot::Frame)

frame_dash_type(value : Int32) frame_dash_type, frame_hide frame_hide, frame_line_color(value : String) frame_line_color, frame_line_style(value : Int32) frame_line_style, frame_line_type(value : Int32) frame_line_type, frame_line_width(value : Int32) frame_line_width, frame_repr frame_repr, frame_show(value = true) frame_show

Constructor methods inherited from module Cryplot::FrameMixin(Cryplot::Frame)

new new

Instance methods inherited from module Cryplot::BaseMixin(Cryplot::Frame)

derived : T derived, repr : String repr, to_s(io : IO) : Nil to_s

Instance Method Detail

def repr : String #
Description copied from module Cryplot::BaseMixin(Cryplot::Frame)

returns a string representation of object of some class


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