NetLogo 7.0.0-beta2:

my-out-<breeds> my-out-links4.0

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

Reports an agentset of all the directed links going out from the caller to other nodes as well as undirected links connected to the caller. You can think of this as "all links you can use to travel from this node".

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