Method: JavaClass::Classpath::CompositeClasspath#count
- Defined in:
- lib/javaclass/classpath/composite_classpath.rb
#count ⇒ Object
Return the number of classes in this classpath.
78 79 80 |
# File 'lib/javaclass/classpath/composite_classpath.rb', line 78 def count @elements.inject(0) { |s,e| s + e.count } end |