out-<breed>-neighbors
out-link-neighbors

out-<breed>-neighbors
out-link-neighbors
Turtle Command

Reports the agentset of all the turtles that have directed links from the caller.

crt 4
ask turtle 0
[
  create-links-to other turtles
  ask out-link-neighbors [ set color pink ] ;; turtles 1-3 turn pink
]
ask turtle 1
[
  ask out-link-neighbors [ set color orange ]  ;; no turtles change colors
                                               ;; since turtle 1 only has in-links
]
end

Take me to the full NetLogo Dictionary