[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-12-06 UTC."],[[["`Array.gt()` is an element-wise comparison that returns 1 if the left-hand value is strictly greater than the right-hand value, and 0 otherwise."],["Both the left (`this`) and right (`right`) inputs must be Arrays."],["The output is an Array with the same dimensions as the inputs, containing the results of the element-wise comparisons."],["If either input is an empty array, the output is an empty array."]]],["The `gt` operation compares two arrays element-wise. It returns a new array of the same dimensions, populated with 1s and 0s. A value of 1 indicates that the corresponding element in the first (left) array is greater than the element in the second (right) array; otherwise, it returns 0. If both arrays are empty, it returns an empty array. It can be applied with different values or arrays, such as `[0]`,`[1]` and `[2]`.\n"]]