diff --git a/udfs/flex/bitwise/and.md b/udfs/flex/bitwise/and.md index e859f22..c5b0f91 100644 --- a/udfs/flex/bitwise/and.md +++ b/udfs/flex/bitwise/and.md @@ -16,6 +16,7 @@ flex.bitwise.and(a, b) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `a` | number (integer) | Yes | First operand | diff --git a/udfs/flex/bitwise/not.md b/udfs/flex/bitwise/not.md index 6667dde..5bfff34 100644 --- a/udfs/flex/bitwise/not.md +++ b/udfs/flex/bitwise/not.md @@ -16,6 +16,7 @@ flex.bitwise.not(a) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `a` | number (integer) | Yes | The operand to invert | diff --git a/udfs/flex/bitwise/or.md b/udfs/flex/bitwise/or.md index a3f0f0e..2125d1b 100644 --- a/udfs/flex/bitwise/or.md +++ b/udfs/flex/bitwise/or.md @@ -16,6 +16,7 @@ flex.bitwise.or(a, b) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `a` | number (integer) | Yes | First operand | diff --git a/udfs/flex/bitwise/shiftLeft.md b/udfs/flex/bitwise/shiftLeft.md index f678582..3c87225 100644 --- a/udfs/flex/bitwise/shiftLeft.md +++ b/udfs/flex/bitwise/shiftLeft.md @@ -16,6 +16,7 @@ flex.bitwise.shiftLeft(a, positions) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `a` | number (integer) | Yes | The value to shift | diff --git a/udfs/flex/bitwise/shiftRight.md b/udfs/flex/bitwise/shiftRight.md index 5aa1399..6fce7cc 100644 --- a/udfs/flex/bitwise/shiftRight.md +++ b/udfs/flex/bitwise/shiftRight.md @@ -16,6 +16,7 @@ flex.bitwise.shiftRight(a, positions) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `a` | number (integer) | Yes | The value to shift | diff --git a/udfs/flex/bitwise/xor.md b/udfs/flex/bitwise/xor.md index c33fa2a..9830c52 100644 --- a/udfs/flex/bitwise/xor.md +++ b/udfs/flex/bitwise/xor.md @@ -16,6 +16,7 @@ flex.bitwise.xor(a, b) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `a` | number (integer) | Yes | First operand | diff --git a/udfs/flex/collections/frequencies.md b/udfs/flex/collections/frequencies.md index e088773..89ec4ae 100644 --- a/udfs/flex/collections/frequencies.md +++ b/udfs/flex/collections/frequencies.md @@ -16,6 +16,7 @@ flex.coll.frequencies(list) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `list` | list | Yes | The list to analyze | diff --git a/udfs/flex/collections/intersection.md b/udfs/flex/collections/intersection.md index c9c6ac0..64256b9 100644 --- a/udfs/flex/collections/intersection.md +++ b/udfs/flex/collections/intersection.md @@ -16,6 +16,7 @@ flex.coll.intersection(list1, list2) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `list1` | list | Yes | The first list | diff --git a/udfs/flex/collections/shuffle.md b/udfs/flex/collections/shuffle.md index 3b79084..e810e8e 100644 --- a/udfs/flex/collections/shuffle.md +++ b/udfs/flex/collections/shuffle.md @@ -16,6 +16,7 @@ flex.coll.shuffle(list) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `list` | list | Yes | The list to shuffle | diff --git a/udfs/flex/collections/union.md b/udfs/flex/collections/union.md index 41f3b2f..030312c 100644 --- a/udfs/flex/collections/union.md +++ b/udfs/flex/collections/union.md @@ -16,6 +16,7 @@ flex.coll.union(list1, list2) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `list1` | list | Yes | The first list | diff --git a/udfs/flex/collections/zip.md b/udfs/flex/collections/zip.md index 6691880..733e204 100644 --- a/udfs/flex/collections/zip.md +++ b/udfs/flex/collections/zip.md @@ -16,6 +16,7 @@ flex.coll.zip(list1, list2) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `list1` | list | Yes | The first list | diff --git a/udfs/flex/date/format.md b/udfs/flex/date/format.md index 4845c3a..adba0d1 100644 --- a/udfs/flex/date/format.md +++ b/udfs/flex/date/format.md @@ -16,6 +16,7 @@ flex.date.format(datetime, pattern, timezone) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `datetime` | Date/number/string | Yes | The date/time value to format | diff --git a/udfs/flex/date/parse.md b/udfs/flex/date/parse.md index b273c0d..b017e2a 100644 --- a/udfs/flex/date/parse.md +++ b/udfs/flex/date/parse.md @@ -16,6 +16,7 @@ flex.date.parse(dateString, pattern, timezone) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `dateString` | string | Yes | The date/time string to parse | diff --git a/udfs/flex/date/toTimeZone.md b/udfs/flex/date/toTimeZone.md index 6b3be6a..0de4012 100644 --- a/udfs/flex/date/toTimeZone.md +++ b/udfs/flex/date/toTimeZone.md @@ -16,6 +16,7 @@ flex.date.toTimeZone(datetime, timezone) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `datetime` | Date/number/string | Yes | The date/time value to convert | diff --git a/udfs/flex/date/truncate.md b/udfs/flex/date/truncate.md index 6b0cfbe..c7127c4 100644 --- a/udfs/flex/date/truncate.md +++ b/udfs/flex/date/truncate.md @@ -16,6 +16,7 @@ flex.date.truncate(datetime, unit) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `datetime` | Date/number/string | Yes | The date/time value to truncate | diff --git a/udfs/flex/json/fromJsonList.md b/udfs/flex/json/fromJsonList.md index 36467ea..d8df3e9 100644 --- a/udfs/flex/json/fromJsonList.md +++ b/udfs/flex/json/fromJsonList.md @@ -16,6 +16,7 @@ flex.json.fromJsonList(jsonString) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `jsonString` | string | Yes | A JSON string representing an array | diff --git a/udfs/flex/json/fromJsonMap.md b/udfs/flex/json/fromJsonMap.md index 6f02ae9..b3e2af5 100644 --- a/udfs/flex/json/fromJsonMap.md +++ b/udfs/flex/json/fromJsonMap.md @@ -16,6 +16,7 @@ flex.json.fromJsonMap(jsonString) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `jsonString` | string | Yes | A JSON string representing an object | diff --git a/udfs/flex/json/toJson.md b/udfs/flex/json/toJson.md index 937f161..aaa7136 100644 --- a/udfs/flex/json/toJson.md +++ b/udfs/flex/json/toJson.md @@ -16,6 +16,7 @@ flex.json.toJson(value) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `value` | any | Yes | The value to serialize to JSON | diff --git a/udfs/flex/map/fromPairs.md b/udfs/flex/map/fromPairs.md index a30c2e7..823a741 100644 --- a/udfs/flex/map/fromPairs.md +++ b/udfs/flex/map/fromPairs.md @@ -16,6 +16,7 @@ flex.map.fromPairs(pairs) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `pairs` | list | Yes | A list of two-element arrays, each containing `[key, value]` | diff --git a/udfs/flex/map/merge.md b/udfs/flex/map/merge.md index 120d0cd..6d2cb92 100644 --- a/udfs/flex/map/merge.md +++ b/udfs/flex/map/merge.md @@ -16,6 +16,7 @@ flex.map.merge(map1, map2, ...) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `map1` | map | No | First map to merge | diff --git a/udfs/flex/map/removeKey.md b/udfs/flex/map/removeKey.md index a297ad9..41359fd 100644 --- a/udfs/flex/map/removeKey.md +++ b/udfs/flex/map/removeKey.md @@ -16,6 +16,7 @@ flex.map.removeKey(map, key) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `map` | map | Yes | The map to remove the key from | diff --git a/udfs/flex/map/removeKeys.md b/udfs/flex/map/removeKeys.md index a160209..51999d7 100644 --- a/udfs/flex/map/removeKeys.md +++ b/udfs/flex/map/removeKeys.md @@ -16,6 +16,7 @@ flex.map.removeKeys(map, keys) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `map` | map | Yes | The map to remove keys from | diff --git a/udfs/flex/map/submap.md b/udfs/flex/map/submap.md index b56113a..ec3b247 100644 --- a/udfs/flex/map/submap.md +++ b/udfs/flex/map/submap.md @@ -16,6 +16,7 @@ flex.map.submap(map, keys) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `map` | map | Yes | The source map to extract keys from | diff --git a/udfs/flex/similarity/jaccard.md b/udfs/flex/similarity/jaccard.md index 168aee5..4e950fc 100644 --- a/udfs/flex/similarity/jaccard.md +++ b/udfs/flex/similarity/jaccard.md @@ -16,6 +16,7 @@ flex.sim.jaccard(list1, list2) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `list1` | list | Yes | The first list to compare | diff --git a/udfs/flex/text/camelCase.md b/udfs/flex/text/camelCase.md index 0cdeedc..348ae34 100644 --- a/udfs/flex/text/camelCase.md +++ b/udfs/flex/text/camelCase.md @@ -16,6 +16,7 @@ flex.text.camelCase(string) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `string` | string | Yes | The string to convert to camelCase | diff --git a/udfs/flex/text/capitalize.md b/udfs/flex/text/capitalize.md index e9afa12..be4ab8b 100644 --- a/udfs/flex/text/capitalize.md +++ b/udfs/flex/text/capitalize.md @@ -16,6 +16,7 @@ flex.text.capitalize(string) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `string` | string | Yes | The string to capitalize | diff --git a/udfs/flex/text/decapitalize.md b/udfs/flex/text/decapitalize.md index b033eaa..7515b60 100644 --- a/udfs/flex/text/decapitalize.md +++ b/udfs/flex/text/decapitalize.md @@ -16,6 +16,7 @@ flex.text.decapitalize(string) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `string` | string | Yes | The string to decapitalize | diff --git a/udfs/flex/text/format.md b/udfs/flex/text/format.md index aae79bc..4608745 100644 --- a/udfs/flex/text/format.md +++ b/udfs/flex/text/format.md @@ -16,6 +16,7 @@ flex.text.format(template, parameters) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `template` | string | Yes | The format string containing `{0}`, `{1}`, etc. placeholders | diff --git a/udfs/flex/text/indexOf.md b/udfs/flex/text/indexOf.md index ebbcc15..cf84e55 100644 --- a/udfs/flex/text/indexOf.md +++ b/udfs/flex/text/indexOf.md @@ -16,6 +16,7 @@ flex.text.indexOf(string, substring, offset, to) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `string` | string | Yes | The string to search in | diff --git a/udfs/flex/text/indexesOf.md b/udfs/flex/text/indexesOf.md index b1a1f7a..a213f96 100644 --- a/udfs/flex/text/indexesOf.md +++ b/udfs/flex/text/indexesOf.md @@ -16,6 +16,7 @@ flex.text.indexesOf(string, substring, from, to) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `string` | string | Yes | The string to search in | diff --git a/udfs/flex/text/jaroWinkler.md b/udfs/flex/text/jaroWinkler.md index 6e12de9..0e25ef2 100644 --- a/udfs/flex/text/jaroWinkler.md +++ b/udfs/flex/text/jaroWinkler.md @@ -16,6 +16,7 @@ flex.text.jaroWinkler(string1, string2) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `string1` | string | Yes | The first string to compare | diff --git a/udfs/flex/text/join.md b/udfs/flex/text/join.md index 74425b1..955c4cd 100644 --- a/udfs/flex/text/join.md +++ b/udfs/flex/text/join.md @@ -16,6 +16,7 @@ flex.text.join(array, delimiter) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `array` | list | Yes | The array of strings to join | diff --git a/udfs/flex/text/levenshtein.md b/udfs/flex/text/levenshtein.md index 840d816..b80b2d6 100644 --- a/udfs/flex/text/levenshtein.md +++ b/udfs/flex/text/levenshtein.md @@ -16,6 +16,7 @@ flex.text.levenshtein(string1, string2) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `string1` | string | Yes | The first string to compare | diff --git a/udfs/flex/text/lpad.md b/udfs/flex/text/lpad.md index b8fe8e7..d02344f 100644 --- a/udfs/flex/text/lpad.md +++ b/udfs/flex/text/lpad.md @@ -16,6 +16,7 @@ flex.text.lpad(string, length, padChar) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `string` | string/number | Yes | The string to pad (will be converted to string if number) | diff --git a/udfs/flex/text/regexGroups.md b/udfs/flex/text/regexGroups.md index 8b35dff..f0380ee 100644 --- a/udfs/flex/text/regexGroups.md +++ b/udfs/flex/text/regexGroups.md @@ -16,6 +16,7 @@ flex.text.regexGroups(string, regex) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `string` | string | Yes | The string to search in | diff --git a/udfs/flex/text/repeat.md b/udfs/flex/text/repeat.md index 276aea1..d4eeafa 100644 --- a/udfs/flex/text/repeat.md +++ b/udfs/flex/text/repeat.md @@ -16,6 +16,7 @@ flex.text.repeat(string, count) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `string` | string | Yes | The string to repeat | diff --git a/udfs/flex/text/replace.md b/udfs/flex/text/replace.md index e89ac44..f6cbba6 100644 --- a/udfs/flex/text/replace.md +++ b/udfs/flex/text/replace.md @@ -16,6 +16,7 @@ flex.text.replace(string, regex, replacement) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `string` | string | Yes | The string to perform replacements on | diff --git a/udfs/flex/text/rpad.md b/udfs/flex/text/rpad.md index cae31b0..fa6f3b1 100644 --- a/udfs/flex/text/rpad.md +++ b/udfs/flex/text/rpad.md @@ -16,6 +16,7 @@ flex.text.rpad(string, length, padChar) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `string` | string/number | Yes | The string to pad (will be converted to string if number) | diff --git a/udfs/flex/text/snakeCase.md b/udfs/flex/text/snakeCase.md index dddb07b..3da5377 100644 --- a/udfs/flex/text/snakeCase.md +++ b/udfs/flex/text/snakeCase.md @@ -16,6 +16,7 @@ flex.text.snakeCase(string) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `string` | string | Yes | The string to convert to snake_case | diff --git a/udfs/flex/text/swapCase.md b/udfs/flex/text/swapCase.md index a8c470a..88d176e 100644 --- a/udfs/flex/text/swapCase.md +++ b/udfs/flex/text/swapCase.md @@ -16,6 +16,7 @@ flex.text.swapCase(string) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `string` | string | Yes | The string to swap case | diff --git a/udfs/flex/text/upperCamelCase.md b/udfs/flex/text/upperCamelCase.md index 0cc5c8c..703a74d 100644 --- a/udfs/flex/text/upperCamelCase.md +++ b/udfs/flex/text/upperCamelCase.md @@ -16,6 +16,7 @@ flex.text.upperCamelCase(string) ``` ## Parameters + | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `string` | string | Yes | The string to convert to UpperCamelCase |