class Kafo::DataTypes::TypeReference

Public Class Methods

new(inner_type) click to toggle source
# File lib/kafo/data_types/type_reference.rb, line 9
def initialize(inner_type)
  @inner_type = DataType.new_from_string(inner_type)
end