Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Puchaczov committed Jan 19, 2025
1 parent 6220d73 commit 925279c
Show file tree
Hide file tree
Showing 68 changed files with 1,920 additions and 28 deletions.
28 changes: 28 additions & 0 deletions docs/data-sources/Airtable/linux-arm64.md
Original file line number Diff line number Diff line change
Expand Up @@ -1283,6 +1283,22 @@ Gets the first non-null value in a list

Returns distinct elements from a collection.

#### T FirstOrDefault\<T\>(IEnumerable\<T\> values)

Returns the first element of a sequence, or a default value if the sequence contains no elements.

#### T LastOrDefault\<T\>(IEnumerable\<T\> values)

Returns the last element of a sequence, or a default value if the sequence contains no elements.

#### T NthOrDefault\<T\>(IEnumerable\<T\> values, int index)

Returns the element at a specified index in a sequence or a default value if the index is out of range.

#### T NthFromEndOrDefault\<T\>(IEnumerable\<T\> values, int index)

Returns the element at a specified index from the end of a sequence or a default value if the index is out of range.

#### string Md5(string content)

Gets the md5 hash of the given string.
Expand Down Expand Up @@ -1479,6 +1495,14 @@ Determine whether the string contains the specified value

Position of the first occurrence of the specified value

#### int? NthIndexOf(string value, string text, int index)

Position of the nth occurrence of the specified value

#### int? LastIndexOf(string value, string text)

Position of the last occurrence of the specified pattern

#### string Soundex(string value)

Computes soundex for the specified value
Expand Down Expand Up @@ -1963,6 +1987,10 @@ Converts given value to string

Converts given value to string

#### string ToString(DateTimeOffset? value, string format, string culture)

Converts given value to string

#### string ToString(byte? value)

Converts given value to string
Expand Down
28 changes: 28 additions & 0 deletions docs/data-sources/Airtable/linux-x64.md
Original file line number Diff line number Diff line change
Expand Up @@ -1283,6 +1283,22 @@ Gets the first non-null value in a list

Returns distinct elements from a collection.

#### T FirstOrDefault\<T\>(IEnumerable\<T\> values)

Returns the first element of a sequence, or a default value if the sequence contains no elements.

#### T LastOrDefault\<T\>(IEnumerable\<T\> values)

Returns the last element of a sequence, or a default value if the sequence contains no elements.

#### T NthOrDefault\<T\>(IEnumerable\<T\> values, int index)

Returns the element at a specified index in a sequence or a default value if the index is out of range.

#### T NthFromEndOrDefault\<T\>(IEnumerable\<T\> values, int index)

Returns the element at a specified index from the end of a sequence or a default value if the index is out of range.

#### string Md5(string content)

Gets the md5 hash of the given string.
Expand Down Expand Up @@ -1479,6 +1495,14 @@ Determine whether the string contains the specified value

Position of the first occurrence of the specified value

#### int? NthIndexOf(string value, string text, int index)

Position of the nth occurrence of the specified value

#### int? LastIndexOf(string value, string text)

Position of the last occurrence of the specified pattern

#### string Soundex(string value)

Computes soundex for the specified value
Expand Down Expand Up @@ -1963,6 +1987,10 @@ Converts given value to string

Converts given value to string

#### string ToString(DateTimeOffset? value, string format, string culture)

Converts given value to string

#### string ToString(byte? value)

Converts given value to string
Expand Down
28 changes: 28 additions & 0 deletions docs/data-sources/Airtable/macos-x64.md
Original file line number Diff line number Diff line change
Expand Up @@ -1283,6 +1283,22 @@ Gets the first non-null value in a list

Returns distinct elements from a collection.

#### T FirstOrDefault\<T\>(IEnumerable\<T\> values)

Returns the first element of a sequence, or a default value if the sequence contains no elements.

#### T LastOrDefault\<T\>(IEnumerable\<T\> values)

Returns the last element of a sequence, or a default value if the sequence contains no elements.

#### T NthOrDefault\<T\>(IEnumerable\<T\> values, int index)

Returns the element at a specified index in a sequence or a default value if the index is out of range.

#### T NthFromEndOrDefault\<T\>(IEnumerable\<T\> values, int index)

Returns the element at a specified index from the end of a sequence or a default value if the index is out of range.

#### string Md5(string content)

Gets the md5 hash of the given string.
Expand Down Expand Up @@ -1479,6 +1495,14 @@ Determine whether the string contains the specified value

Position of the first occurrence of the specified value

#### int? NthIndexOf(string value, string text, int index)

Position of the nth occurrence of the specified value

#### int? LastIndexOf(string value, string text)

Position of the last occurrence of the specified pattern

#### string Soundex(string value)

Computes soundex for the specified value
Expand Down Expand Up @@ -1963,6 +1987,10 @@ Converts given value to string

Converts given value to string

#### string ToString(DateTimeOffset? value, string format, string culture)

Converts given value to string

#### string ToString(byte? value)

Converts given value to string
Expand Down
28 changes: 28 additions & 0 deletions docs/data-sources/Airtable/windows-x64.md
Original file line number Diff line number Diff line change
Expand Up @@ -1283,6 +1283,22 @@ Gets the first non-null value in a list

Returns distinct elements from a collection.

#### T FirstOrDefault\<T\>(IEnumerable\<T\> values)

Returns the first element of a sequence, or a default value if the sequence contains no elements.

#### T LastOrDefault\<T\>(IEnumerable\<T\> values)

Returns the last element of a sequence, or a default value if the sequence contains no elements.

#### T NthOrDefault\<T\>(IEnumerable\<T\> values, int index)

Returns the element at a specified index in a sequence or a default value if the index is out of range.

#### T NthFromEndOrDefault\<T\>(IEnumerable\<T\> values, int index)

Returns the element at a specified index from the end of a sequence or a default value if the index is out of range.

#### string Md5(string content)

Gets the md5 hash of the given string.
Expand Down Expand Up @@ -1479,6 +1495,14 @@ Determine whether the string contains the specified value

Position of the first occurrence of the specified value

#### int? NthIndexOf(string value, string text, int index)

Position of the nth occurrence of the specified value

#### int? LastIndexOf(string value, string text)

Position of the last occurrence of the specified pattern

#### string Soundex(string value)

Computes soundex for the specified value
Expand Down Expand Up @@ -1963,6 +1987,10 @@ Converts given value to string

Converts given value to string

#### string ToString(DateTimeOffset? value, string format, string culture)

Converts given value to string

#### string ToString(byte? value)

Converts given value to string
Expand Down
28 changes: 28 additions & 0 deletions docs/data-sources/Archives/linux-arm64.md
Original file line number Diff line number Diff line change
Expand Up @@ -1266,6 +1266,22 @@ Gets the first non-null value in a list

Returns distinct elements from a collection.

#### T FirstOrDefault\<T\>(IEnumerable\<T\> values)

Returns the first element of a sequence, or a default value if the sequence contains no elements.

#### T LastOrDefault\<T\>(IEnumerable\<T\> values)

Returns the last element of a sequence, or a default value if the sequence contains no elements.

#### T NthOrDefault\<T\>(IEnumerable\<T\> values, int index)

Returns the element at a specified index in a sequence or a default value if the index is out of range.

#### T NthFromEndOrDefault\<T\>(IEnumerable\<T\> values, int index)

Returns the element at a specified index from the end of a sequence or a default value if the index is out of range.

#### string Md5(string content)

Gets the md5 hash of the given string.
Expand Down Expand Up @@ -1462,6 +1478,14 @@ Determine whether the string contains the specified value

Position of the first occurrence of the specified value

#### int? NthIndexOf(string value, string text, int index)

Position of the nth occurrence of the specified value

#### int? LastIndexOf(string value, string text)

Position of the last occurrence of the specified pattern

#### string Soundex(string value)

Computes soundex for the specified value
Expand Down Expand Up @@ -1946,6 +1970,10 @@ Converts given value to string

Converts given value to string

#### string ToString(DateTimeOffset? value, string format, string culture)

Converts given value to string

#### string ToString(byte? value)

Converts given value to string
Expand Down
28 changes: 28 additions & 0 deletions docs/data-sources/Archives/linux-x64.md
Original file line number Diff line number Diff line change
Expand Up @@ -1266,6 +1266,22 @@ Gets the first non-null value in a list

Returns distinct elements from a collection.

#### T FirstOrDefault\<T\>(IEnumerable\<T\> values)

Returns the first element of a sequence, or a default value if the sequence contains no elements.

#### T LastOrDefault\<T\>(IEnumerable\<T\> values)

Returns the last element of a sequence, or a default value if the sequence contains no elements.

#### T NthOrDefault\<T\>(IEnumerable\<T\> values, int index)

Returns the element at a specified index in a sequence or a default value if the index is out of range.

#### T NthFromEndOrDefault\<T\>(IEnumerable\<T\> values, int index)

Returns the element at a specified index from the end of a sequence or a default value if the index is out of range.

#### string Md5(string content)

Gets the md5 hash of the given string.
Expand Down Expand Up @@ -1462,6 +1478,14 @@ Determine whether the string contains the specified value

Position of the first occurrence of the specified value

#### int? NthIndexOf(string value, string text, int index)

Position of the nth occurrence of the specified value

#### int? LastIndexOf(string value, string text)

Position of the last occurrence of the specified pattern

#### string Soundex(string value)

Computes soundex for the specified value
Expand Down Expand Up @@ -1946,6 +1970,10 @@ Converts given value to string

Converts given value to string

#### string ToString(DateTimeOffset? value, string format, string culture)

Converts given value to string

#### string ToString(byte? value)

Converts given value to string
Expand Down
28 changes: 28 additions & 0 deletions docs/data-sources/Archives/macos-x64.md
Original file line number Diff line number Diff line change
Expand Up @@ -1266,6 +1266,22 @@ Gets the first non-null value in a list

Returns distinct elements from a collection.

#### T FirstOrDefault\<T\>(IEnumerable\<T\> values)

Returns the first element of a sequence, or a default value if the sequence contains no elements.

#### T LastOrDefault\<T\>(IEnumerable\<T\> values)

Returns the last element of a sequence, or a default value if the sequence contains no elements.

#### T NthOrDefault\<T\>(IEnumerable\<T\> values, int index)

Returns the element at a specified index in a sequence or a default value if the index is out of range.

#### T NthFromEndOrDefault\<T\>(IEnumerable\<T\> values, int index)

Returns the element at a specified index from the end of a sequence or a default value if the index is out of range.

#### string Md5(string content)

Gets the md5 hash of the given string.
Expand Down Expand Up @@ -1462,6 +1478,14 @@ Determine whether the string contains the specified value

Position of the first occurrence of the specified value

#### int? NthIndexOf(string value, string text, int index)

Position of the nth occurrence of the specified value

#### int? LastIndexOf(string value, string text)

Position of the last occurrence of the specified pattern

#### string Soundex(string value)

Computes soundex for the specified value
Expand Down Expand Up @@ -1946,6 +1970,10 @@ Converts given value to string

Converts given value to string

#### string ToString(DateTimeOffset? value, string format, string culture)

Converts given value to string

#### string ToString(byte? value)

Converts given value to string
Expand Down
28 changes: 28 additions & 0 deletions docs/data-sources/Archives/windows-x64.md
Original file line number Diff line number Diff line change
Expand Up @@ -1266,6 +1266,22 @@ Gets the first non-null value in a list

Returns distinct elements from a collection.

#### T FirstOrDefault\<T\>(IEnumerable\<T\> values)

Returns the first element of a sequence, or a default value if the sequence contains no elements.

#### T LastOrDefault\<T\>(IEnumerable\<T\> values)

Returns the last element of a sequence, or a default value if the sequence contains no elements.

#### T NthOrDefault\<T\>(IEnumerable\<T\> values, int index)

Returns the element at a specified index in a sequence or a default value if the index is out of range.

#### T NthFromEndOrDefault\<T\>(IEnumerable\<T\> values, int index)

Returns the element at a specified index from the end of a sequence or a default value if the index is out of range.

#### string Md5(string content)

Gets the md5 hash of the given string.
Expand Down Expand Up @@ -1462,6 +1478,14 @@ Determine whether the string contains the specified value

Position of the first occurrence of the specified value

#### int? NthIndexOf(string value, string text, int index)

Position of the nth occurrence of the specified value

#### int? LastIndexOf(string value, string text)

Position of the last occurrence of the specified pattern

#### string Soundex(string value)

Computes soundex for the specified value
Expand Down Expand Up @@ -1946,6 +1970,10 @@ Converts given value to string

Converts given value to string

#### string ToString(DateTimeOffset? value, string format, string culture)

Converts given value to string

#### string ToString(byte? value)

Converts given value to string
Expand Down
Loading

0 comments on commit 925279c

Please sign in to comment.