class T::Private::Types::StringHolder

Holds a string. Useful for showing type aliases in error messages

def build_type

def build_type
  nil
end

def initialize(string)

def initialize(string)
  @string = string
end

def name

overrides Base
def name
  string
end

def subtype_of_single?(other)

overrides Base
def subtype_of_single?(other)

def valid?(obj)

overrides Base
def valid?(obj)
  false
end