- Let functions with only one variable declaration can be defined on one line
No Format Let ( ~someVar = FunctionalArea » Tablename::fieldName ; If ( ~someVar = "Active"; True; False ) )
- Example Let function with indenting
No Format Let ( [ ~privateVariable = List ( "one" ; "two" ; "three" ); $localVariable = Substitute ( ~privateVariable ; [ ¶ ; "," ] ); $$globalVariableTopValue = GetValue ( ~privateVariable ; 1 ) ]; "Your Let function result is " & $localVariable )
- Let functions with multiple variables use both opening and closing brackets on their own lines
Note: both opening and closing brackets should be indented to stand out.Because the standard started out with the opening bracket on the same line as the function name, yet does not impede readability, it can be considered the shorthand version and perfectly acceptable.No Format Let ( [ variable = expression ]; "result is indented 2 tabs" )
good
No Format Let ( [
acceptable
No Format Let ( [
bad
- Closing Let variable declarations end on their own line. This indicates the start of the result.
No Format ];
good
No Format endOfFunction ) ];
bad
- Calculation scoped variables use camelCase and are identified by a preceding variable indicator of ~ (tilde). The ~ character in these standards represents the private scope.
This makes it easy to distinguish calculation variables from custom function arguments, $variables, and Table::fieldNamesNo Format ~someVariable
good
No Format someVariable
bad
- Use present tense verbs or adjectives to indicate Boolean variable status on both calculation and locally scoped variables.
No Format $hasReturns ~isTrailing $containsSpaces not ~containsEmailAddress