Help for this page

Select Code to Download


  1. or download this
    if (%foo) {
        # %foo has at least one key
    } else {
        # %foo has no keys
    }
    
  2. or download this
    if (!!%foo) { ... }
    
  3. or download this
    if (scalar %foo) { ... }
    
  4. or download this
    if (0+%foo) { ... }