lrc_hyper

Type Conversion From String

Converts a string into a hyper integer.

hyper lrc_hyper( const char* str );
hyper* lrc_hyper_by_ref( const char* str );
str A character string containing a hyper (64 bit) integer.

The lrc_hyper function returns a hyper (64 bit) integer when a character string representing a hyper integer is input.

The lrc_hyper_by_ref function returns a pointer to a hyper (64 bit) integer when a character string representing a hyper integer is input.

Return Values

lrc Return Values

Parameterization

You cannot use standard parameterization for any arguments in this function.

Example

This example converts the "42849672941" string into the hyper value 42849672941:

hyper var = lrc_hyper("42849672941");