class Yard2steep::Type::ArrayType
Public Class Methods
new(type:)
click to toggle source
@param [TypeBase] type
# File lib/yard2steep/type/ast.rb, line 29 def initialize(type:) @type = type end
Public Instance Methods
to_s()
click to toggle source
@return [String]
# File lib/yard2steep/type/ast.rb, line 34 def to_s "Array<#{@type}>" end