Returns true if the input character is a whitespace character
Namespace: HelperFunctions
Delphi |
function RSIsWhiteSpace( const C: Char ): Boolean; inline; |
Parameters
C
Type: Char
Type: Boolean
This function is useful when writing code that supports different versions of Delphi as you do not need which unit to include or change the code from IsWhiteSpace(C) to C.IsWhiteSpace for later versions of Delphi. |