class Lutaml::Model::TomlAdapter::TomlDocument

Base class for TOML documents

def self.parse(toml)

def self.parse(toml)
  raise NotImplementedError, "Subclasses must implement `parse`."
end

def to_toml(*args)

def to_toml(*args)
  raise NotImplementedError, "Subclasses must implement `to_toml`."
end