// file : libbutl/default-options.ixx -*- C++ -*- // license : MIT; see accompanying LICENSE file namespace butl { template inline O merge_default_options (const default_options& def_ops, const O& cmd_ops) { return merge_default_options ( def_ops, cmd_ops, [] (const default_options_entry&, const O&) {}); } template inline AS merge_default_arguments (const default_options& def_ops, const AS& cmd_args) { return merge_default_arguments ( def_ops, cmd_args, [] (const default_options_entry&, const AS&) {}); } }