OpenCMISS-Iron Internal API Documentation
strings::stringtological Interface Reference

Converts a string representation of a boolean value (TRUE or FALSE) to a logical. More...

Private Member Functions

logical function string_to_logical_c (STRING, ERR, ERROR)
 Converts a character string representation of a boolean (TRUE or FALSE) to a logical. More...
 
logical function string_to_logical_vs (STRING, ERR, ERROR)
 Converts a varying string representation of a boolean (TRUE or FALSE) to a logical. More...
 

Detailed Description

Converts a string representation of a boolean value (TRUE or FALSE) to a logical.

Definition at line 219 of file strings.f90.

Member Function/Subroutine Documentation

logical function strings::stringtological::string_to_logical_c ( character(len=*), intent(in)  STRING,
integer(intg), intent(out)  ERR,
type(varying_string), intent(out)  ERROR 
)
private

Converts a character string representation of a boolean (TRUE or FALSE) to a logical.

Parameters
[in]stringThe string to convert
[out]errThe error code
[out]errorThe error string
Returns
On exit, the logical equivalent of the string

Definition at line 1612 of file strings.f90.

logical function strings::stringtological::string_to_logical_vs ( type(varying_string), intent(in)  STRING,
integer(intg), intent(out)  ERR,
type(varying_string), intent(out)  ERROR 
)
private

Converts a varying string representation of a boolean (TRUE or FALSE) to a logical.

Parameters
[in]stringThe string to convert
[out]errThe error code
[out]errorThe error string
Returns
On exit, the logical equivalent of the string

Definition at line 1638 of file strings.f90.