class SyntaxTree::Reflection::Type::ArrayType

Represents an array type that holds another type.

def ===(value)

def ===(value)
  value.is_a?(Array) && value.all? { type === _1 }
end

def initialize(type)

def initialize(type)
  @type = type
end

def inspect

def inspect
  "Array<#{type.inspect}>"
end