my-out-<breeds>
my-out-links

my-out-<breeds>
my-out-links
Turtle Command

Reports an agentset of all the directed links going out from the caller to other nodes.

crt 5
ask turtle 0
[
  create-links-to other turtles
  show my-out-links ;; shows agentset containing all the links
]
ask turtle 1
[
  show my-out-links ;; shows an empty agentset
]

Take me to the full NetLogo Dictionary