You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying out your library and noticed it didn't like integer keys <= 0.
select type(key)
class is(key_base)
is_key_allowed = .true.
type is(integer(I1P))
if (key>0) is_key_allowed = .true.
type is(integer(I2P))
if (key>0) is_key_allowed = .true.
type is(integer(I4P))
if (key>0) is_key_allowed = .true.
type is(integer(I8P))
if (key>0) is_key_allowed = .true.
type is(character(len=*))
is_key_allowed = .true.
endselect
Is there a reason why this is the case? Can it be changed?
Thanks!
The text was updated successfully, but these errors were encountered:
Hello,
I was trying out your library and noticed it didn't like integer keys <= 0.
Is there a reason why this is the case? Can it be changed?
Thanks!
The text was updated successfully, but these errors were encountered: