System.Hash.THash.ToBigEndian

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class function ToBigEndian(AValue: Cardinal): Cardinal; overload; static; inline;
class function ToBigEndian(AValue: UInt64): UInt64; overload; static; inline;

C++

static unsigned __fastcall ToBigEndian(unsigned AValue)/* overload */;
static unsigned __int64 __fastcall ToBigEndian(unsigned __int64 AValue)/* overload */;

Properties

Type Visibility Source Unit Parent
function public
System.Hash.pas
System.Hash.hpp
System.Hash THash

Description

Returns the BigEndian memory representation of the provided value.

You may specify the value either as a Cardinal or a Int64.

See Also