Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re^4: socket checker in multiple hosts for multiple destination (Perl 6)

by raiph (Deacon)
on Feb 16, 2016 at 19:20 UTC ( [id://1155387]=note: print w/replies, xml ) Need Help??


in reply to Re^3: socket checker in multiple hosts for multiple destination (Perl 6)
in thread socket checker in multiple hosts for multiple destination

I don't think Rakudo yet unloads the module in the sense of freeing up the space it takes but it does unload it in the sense the symbols that the module added go away again (become unavailable to non-mop code).

If multiple blocks want to use the same module then you'll typically `use` that module in an outer scope:

use foo; # foo's and waldo's symbols available { use bar; # foo's, waldo's, and bar's symbols available } # foo's and waldo's symbols available { use qux; # foo's, waldo's, and qux's symbols available } # foo's and waldo's symbols available use waldo;

  • Comment on Re^4: socket checker in multiple hosts for multiple destination (Perl 6)
  • Download Code

Replies are listed 'Best First'.
A reply falls below the community's threshold of quality. You may see it by logging in.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1155387]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (4)
As of 2024-04-24 06:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found