Help for this page

Select Code to Download


  1. or download this
    if ( defined &{ "some::cool::${module}::method" } ) {
        &{ \&{ "some::cool::${module}::method" } }(some arguments);
    } else {
        ...
    }
    
  2. or download this
    if ( "some::cool::${module}"->can("method") ) {
        ???