![show/hide quicksearch [+]](../images/find.png)
Used internally by Fiddle::Importer
Create a new handler with the open handlers
Used internally by Fiddle::Importer.dlload
 
               # File ruby-3.1.2/ext/fiddle/lib/fiddle/import.rb, line 13
def initialize(handlers)
  @handlers = handlers
end
             
            See Fiddle::CompositeHandler.sym
 
               # File ruby-3.1.2/ext/fiddle/lib/fiddle/import.rb, line 40
def [](symbol)
  sym(symbol)
end
             
            Array of the currently loaded libraries.
 
               # File ruby-3.1.2/ext/fiddle/lib/fiddle/import.rb, line 18
def handlers()
  @handlers
end
             
            Returns the address as an Integer from any handlers with the function named symbol.
Raises a DLError if the handle is closed.
 
               # File ruby-3.1.2/ext/fiddle/lib/fiddle/import.rb, line 26
def sym(symbol)
  @handlers.each{|handle|
    if( handle )
      begin
        addr = handle.sym(symbol)
        return addr
      rescue DLError
      end
    end
  }
  return nil
end