Appends this struct's name and instance variables names and values to the given IO.
Assuming this type is a struct, returns its name.
Struct
Value
Object
Object
Appends this struct's name and instance variables names and values to the given IO.
struct Point def initialize(@x : Int32, @y : Int32) end end p1 = Point.new 1, 2 p1.to_s # "Point(@x=1, @y=2)" p1.inspect # "Point(@x=1, @y=2)"
Assuming this type is a struct, returns its name. The name can be nil
if the struct is anonymous. Raises if this type is not a struct.
© 2012–2020 Manas Technology Solutions.
Licensed under the Apache License, Version 2.0.
https://crystal-lang.org/api/0.35.1/LLVM/Type.html