my-in-<breeds>
my-in-links

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

Reports an agentset of all the directed links coming in from other nodes to the caller.

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

Take me to the full NetLogo Dictionary