Help for this page

Select Code to Download


  1. or download this
    my @sockets = grep {
        ref $connections{$_} eq 'HASH'
        && $connections{$_}{username} eq 'Bob'
    } keys %connections;
    
  2. or download this
    my @sockets = grep { $connections{$_}{username} eq 'Bob' } keys %conne
    +ctions;