whatΒΆ

what displays the names of the loaded UniScript functions in the command window.

ssRet = what()
ssRet = what(ssPattern)

Return Value

ssRet is the number of currently loaded functions.

Parameters

ssPattern

ssPattern is a scalar string with a search pattern. For a description of the search pattern, see strmatch.

Example

Lists all function names:

what()

Lists the function names beginning with XY:

what("XY*")

Lists the function names beginning with XY but the third letter is not Z:

what("XY[!Z]*")

id-1026717