class Lutaml::Uml::Formatter::Graphviz::Attributes

Public Instance Methods

to_s() click to toggle source
# File lib/lutaml/uml/formatter/graphviz.rb, line 12
def to_s
  to_a
    .reject { |(_k, val)| val.nil? }
    .map { |(a, b)| "#{a}=#{b.inspect}" }
    .join(" ")
end