This method is deprecated or moved on the latest stable version. The last existing version (v1_8_7_330) is shown here.
include_attr?(attr)
If attr is included, true is returned
# File lib/rdoc/parsers/parse_f95.rb, line 1698 def include_attr?(attr) return if !attr @types.split(",").each{ |type| return true if type.strip.chomp.upcase == attr.strip.chomp.upcase } return nil end