Skip to content

arcadia.introspection

Ramsey Nasser edited this page Dec 18, 2018 · 2 revisions

Syntax

(methods t)
(methods t pattern)

Description

Returns a sequence of MethodInfos sorted by name of all the methods in t. If a string or regular expression is provided as pattern it is used to narrow the results to methods with names that contain or match pattern.


Syntax

(properties t)
(properties t pattern)

Description

Returns a sequence of PropertyInfos sorted by name of all the properties in t. If a string or regular expression is provided as pattern it is used to narrow the results to methods with names that contain or match pattern.


Syntax

(fields t)
(fields t pattern)

Description

Returns a sequence of FieldInfos sorted by name of all the fields in t. If a string or regular expression is provided as pattern it is used to narrow the results to methods with names that contain or match pattern.


Syntax

(constructors t)

Description

Returns an array of all the constructors in t


Syntax

(members t)
(members t sr)

Description

Returns a sequence of all the methods, properties, and fields in t