has_electron_species Function

public pure function has_electron_species(spec)

Determine if any of the known species are electron like

Arguments

Type IntentOptional Attributes Name
type(specie), intent(in), dimension (:) :: spec

Return Value logical


Contents

Source Code


Source Code

  pure logical function has_electron_species (spec)
    implicit none
    type (specie), dimension (:), intent (in) :: spec
    has_electron_species = any(is_electron_species(spec))
  end function has_electron_species