-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cross ref, cleanup, update to rc version
- Loading branch information
Showing
7 changed files
with
20 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
--- | ||
title: CreateGUID | ||
id: function-createguid | ||
related: | ||
categories: | ||
- core | ||
--- | ||
|
||
A globally unique identifier or GUID is a special type of identifier used in software applications to provide an unique reference number. | ||
|
||
The value is represented as a 32 character hexadecimal string, such as {21EC2020-3AEA-1069-A2DD-08002B30309D} and usually stored as a 128 bit integer. | ||
The value is represented as a 32 character hexadecimal string, such as {21EC2020-3AEA-1069-A2DD-08002B30309D} and usually stored as a 128 bit integer. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
--- | ||
title: lslcase | ||
title: LSLCase | ||
id: function-lslcase | ||
related: | ||
- function-lcase | ||
categories: | ||
- internationalization | ||
--- | ||
|
||
Converts the alphabetic characters in a specified string to lowercase, respecting locale-specific casing rules. This is particularly important for languages where the standard lowercase conversion rules do not apply, ensuring accurate and culturally correct text processing. The function defaults to the current page's locale if no locale is specified. | ||
Converts the alphabetic characters in a specified string to lowercase, respecting locale-specific casing rules. This is particularly important for languages where the standard lowercase conversion rules do not apply, ensuring accurate and culturally correct text processing. The function defaults to the current page's locale if no locale is specified. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
--- | ||
title: lsucase | ||
title: LSUCase | ||
id: function-lsucase | ||
related: | ||
- function-ucase | ||
categories: | ||
- internationalization | ||
description: Converts the alphabetic characters in a specified string to uppercase, respecting locale-specific casing rules | ||
--- | ||
|
||
Converts the alphabetic characters in a specified string to uppercase, | ||
respecting locale-specific casing rules. This is particularly important for languages where the standard lowercase conversion rules do not apply, | ||
ensuring accurate and culturally correct text processing. The function defaults to the current page's locale if no locale is specified. | ||
ensuring accurate and culturally correct text processing. The function defaults to the current page's locale if no locale is specified. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
--- | ||
title: valueref | ||
title: ValueRef | ||
id: function-valueref | ||
related: | ||
categories: | ||
--- | ||
|
||
creates a reference to a UDF that acts like a simple value. | ||
creates a reference to a UDF that acts like a simple value. |