Skip to content

Latest commit

 

History

History
39 lines (20 loc) · 1.39 KB

File metadata and controls

39 lines (20 loc) · 1.39 KB

type: array

The <array> inspectors return a list of values in a dictionary array.

array <integer> of <array> : array

An array from an array by index.

boolean <integer> of <array> : boolean

Get, from an array, a boolean keyed by the specified integer.Example: boolean 1 of array "NSTableView Sort Ordering NSNavOutlineColumnSettings.v1" of preference "com.apple.Console" - Returns the first boolean value in the array.

date <integer> of <array> : time

Get, from an array, a date keyed by the specified integer.

dictionary <integer> of <array> : dictionary

Get, from an array, a dictionary keyed by the specified integer.

integer <integer> of <array> : integer

Get, from an array, an integer keyed by the specified integer.

real <integer> of <array> : floating point

No documentation exists.

size of <array> : integer

Returns the number of unique elements in the given array.Example: size of array "persistent-apps" of preference "com.apple.dock" - Returns the number of unique elements in the specified array.

string <integer> of <array> : string

Get, from an array, a string keyed by the specified integer.Example: string 0 of array "RecentSearchStrings" of preference "com.apple.safari" - Returns the most recent search string.

value of <array> : osxvalue

Values of the array.