method
sym
v1_9_3_392 -
Show latest stable
- Class:
DL::CompositeHandler
sym(symbol)public
No documentation available.
# File ext/dl/lib/dl/import.rb, line 16
def sym(symbol)
@handlers.each{|handle|
if( handle )
begin
addr = handle.sym(symbol)
return addr
rescue DLError
end
end
}
return nil
end