运算符(/=) 接口

公有接口运算符(/=)

比较字符串列表与输入实体是否不相等,返回逻辑值 规范


模块过程

私有纯函数 ineq_stringlist(lhs, rhs)

比较字符串列表 'lhs' 与字符串列表 'rhs' 是否不相等,返回逻辑值

参数

类型 意图可选 属性 名称
type(stringlist_type), intent(in) :: lhs
type(stringlist_type), intent(in) :: rhs

返回值 逻辑值

私有纯函数 ineq_stringlist_carray(lhs, rhs)

比较字符串列表 'lhs' 与字符数组 'rhs' 是否不相等,返回逻辑值

参数

类型 意图可选 属性 名称
type(stringlist_type), intent(in) :: lhs
character(len=*), intent(in), dimension(:) :: rhs

返回值 逻辑值

私有纯函数 ineq_stringlist_sarray(lhs, rhs)

比较字符串列表 'lhs' 与字符串数组 'rhs' 是否不相等,返回逻辑值

参数

类型 意图可选 属性 名称
type(stringlist_type), intent(in) :: lhs
type(string_type), intent(in), dimension(:) :: rhs

返回值 逻辑值

私有纯函数 ineq_carray_stringlist(lhs, rhs)

比较字符数组 'lhs' 与字符串列表 'rhs' 是否不相等,返回逻辑值

参数

类型 意图可选 属性 名称
character(len=*), intent(in), dimension(:) :: lhs
type(stringlist_type), intent(in) :: rhs

返回值 逻辑值

私有纯函数 ineq_sarray_stringlist(lhs, rhs)

比较字符串数组 'lhs' 与字符串列表 'rhs' 是否不相等,返回逻辑值

参数

类型 意图可选 属性 名称
type(string_type), intent(in), dimension(:) :: lhs
type(stringlist_type), intent(in) :: rhs

返回值 逻辑值