Name

Lo Function

Syntax

function Lo(Value: Integer): Byte;

Description

The Lo function returns the least significant byte of an integer. The Lo function is not a real function, but is expanded inline by the compiler.

Tips and Tricks

The Lo function is equivalent to the following function:

function Lo(Value: Integer): Byte;
begin
  Result := Value and $FF;
end;

See Also

Hi Function
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset