module Lutaml::Model::Utils

def empty_collection?(collection)

def empty_collection?(collection)
  return false if collection.nil?
  return false unless [Array, Hash].include?(collection.class)
  collection.empty?
end