Open In App

Ruby | Struct inspect() function

Last Updated : 18 Dec, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The inspect() is an inbuilt method in Ruby that returns a string with the value of the particular struct.
Syntax: struct_name.inspect() Parameters: The function does not accepts any parameter. Return Value: It returns the value of struct.
Example 1: Ruby
# Ruby program for inspect method in struct 
  
# Include struct
animals = Struct.new(:name, :speciality , :found_in)

# initialize values
detail = animals.new("labrador", "bark" , "Newfoundland")

# inspect used
puts detail.inspect 
Output:
struct name="labrador", speciality="bark", found_in="Newfoundland"
Example 2: Ruby
# Ruby program for inspect method in struct 
  
# Include struct
animals = Struct.new(:name)

# initialize values
detail = animals.new("golden retriever")

# inspect used
puts detail.inspect
Output:
struct name="golden retriever"

Next Article

Similar Reads