Method: FFIDB::Library#each_function
- Defined in:
- lib/ffidb/library.rb
#each_function {|function| ... } ⇒ Enumerator
106 107 108 109 |
# File 'lib/ffidb/library.rb', line 106 def each_function(&block) return self.to_enum(:each_function) unless block_given? self.each_symbol.filter { |symbol| symbol.function? }.each(&block) end |