Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions udfs/flex/bitwise/and.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.bitwise.and(a, b)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `a` | number (integer) | Yes | First operand |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/bitwise/not.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.bitwise.not(a)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `a` | number (integer) | Yes | The operand to invert |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/bitwise/or.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.bitwise.or(a, b)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `a` | number (integer) | Yes | First operand |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/bitwise/shiftLeft.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.bitwise.shiftLeft(a, positions)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `a` | number (integer) | Yes | The value to shift |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/bitwise/shiftRight.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.bitwise.shiftRight(a, positions)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `a` | number (integer) | Yes | The value to shift |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/bitwise/xor.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.bitwise.xor(a, b)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `a` | number (integer) | Yes | First operand |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/collections/frequencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.coll.frequencies(list)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `list` | list | Yes | The list to analyze |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/collections/intersection.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.coll.intersection(list1, list2)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `list1` | list | Yes | The first list |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/collections/shuffle.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.coll.shuffle(list)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `list` | list | Yes | The list to shuffle |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/collections/union.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.coll.union(list1, list2)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `list1` | list | Yes | The first list |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/collections/zip.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.coll.zip(list1, list2)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `list1` | list | Yes | The first list |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/date/format.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/date/parse.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.date.parse(dateString, pattern, timezone)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `dateString` | string | Yes | The date/time string to parse |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/date/toTimeZone.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/date/truncate.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/json/fromJsonList.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.json.fromJsonList(jsonString)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `jsonString` | string | Yes | A JSON string representing an array |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/json/fromJsonMap.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.json.fromJsonMap(jsonString)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `jsonString` | string | Yes | A JSON string representing an object |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/json/toJson.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.json.toJson(value)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `value` | any | Yes | The value to serialize to JSON |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/map/fromPairs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]` |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/map/merge.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.map.merge(map1, map2, ...)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `map1` | map | No | First map to merge |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/map/removeKey.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.map.removeKey(map, key)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `map` | map | Yes | The map to remove the key from |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/map/removeKeys.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.map.removeKeys(map, keys)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `map` | map | Yes | The map to remove keys from |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/map/submap.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.map.submap(map, keys)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `map` | map | Yes | The source map to extract keys from |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/similarity/jaccard.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.sim.jaccard(list1, list2)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `list1` | list | Yes | The first list to compare |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/text/camelCase.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.text.camelCase(string)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `string` | string | Yes | The string to convert to camelCase |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/text/capitalize.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.text.capitalize(string)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `string` | string | Yes | The string to capitalize |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/text/decapitalize.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.text.decapitalize(string)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `string` | string | Yes | The string to decapitalize |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/text/format.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/text/indexOf.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.text.indexOf(string, substring, offset, to)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `string` | string | Yes | The string to search in |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/text/indexesOf.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.text.indexesOf(string, substring, from, to)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `string` | string | Yes | The string to search in |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/text/jaroWinkler.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.text.jaroWinkler(string1, string2)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `string1` | string | Yes | The first string to compare |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/text/join.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.text.join(array, delimiter)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `array` | list | Yes | The array of strings to join |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/text/levenshtein.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.text.levenshtein(string1, string2)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `string1` | string | Yes | The first string to compare |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/text/lpad.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/text/regexGroups.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.text.regexGroups(string, regex)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `string` | string | Yes | The string to search in |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/text/repeat.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.text.repeat(string, count)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `string` | string | Yes | The string to repeat |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/text/replace.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.text.replace(string, regex, replacement)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `string` | string | Yes | The string to perform replacements on |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/text/rpad.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/text/snakeCase.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.text.snakeCase(string)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `string` | string | Yes | The string to convert to snake_case |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/text/swapCase.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.text.swapCase(string)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `string` | string | Yes | The string to swap case |
Expand Down
1 change: 1 addition & 0 deletions udfs/flex/text/upperCamelCase.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ flex.text.upperCamelCase(string)
```

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `string` | string | Yes | The string to convert to UpperCamelCase |
Expand Down