| Did you know ... | Search Documentation: |
| chain<-map |
@arg1 Element tested @arg2 1-based index of the element
The example below returns a chain with names holding the names of all graphical objects on the graphical device.
graphical_names(Device, Names) :-
get(Device, graphicals, Chain),
get(Chain, map, @arg1?name, Names).