class Lutaml::Model::UninitializedClass

def encoding

def encoding
  # same as default encoding for string
  "".encoding
end

def gsub(_, _)

def gsub(_, _)
  self
end

def include?(_args)

def include?(_args)
  false
end

def inspect

def inspect
  "uninitialized"
end

def match?(_args)

def match?(_args)
  false
end

def method_missing(method, *_args, &_block)

def method_missing(method, *_args, &_block)
  if method.end_with?("?")
    false
  else
    super
  end
end

def respond_to_missing?(method_name, _include_private = false)

def respond_to_missing?(method_name, _include_private = false)
  method_name.end_with?("?")
end

def size

def size
  0
end

def to_f

def to_f
  self
end

def to_s

def to_s
  self
end

def to_yaml

def to_yaml
  nil
end

def uninitialized?

def uninitialized?
  true
end