This file is indexed.

/usr/share/freemat/help/text/isset.mdc is in freemat-help 4.0-5.

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
14
15
16
17
ISSET ISSET Test If Variable Set

Usage

Tests for the existence and non-emptiness of a variable.
the general syntax for its use is

   y = isset('name')

where name is the name of the variable to test.  This
is functionally equivalent to 

   y = exist('name','var') & ~isempty(name)

It returns a logical 1 if the variable is defined 
in the current workspace, and is not empty, and returns
a 0 otherwise.