This file is indexed.

/usr/lib/s9fes/help/exists is in scheme9 2010.11.13-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
S9 LIB  (exists procedure list ...)  ==>  boolean

Test whether a given property exists in a sequence of N lists.
The property is expressed using the N-ary predicate P, which
is given in the procedure argument. P is first applied to a
list consisting of the first member of each given list. If P
returns truth, EXISTS returns #T immediately. Otherwise it is
applied to a list consisting of the second member of each given
list, etc. If P returns falsity for all sets of members, EXISTS
returns #F.

(exists < '(9 1) '(8 2) '(7 3))  ==>  #t
; because (< 1 2 3)