-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Dynamically runtime loading packages -- -- This is a simple library for dynamically loading other packages at -- runtime. Please see the README on GitHub at -- https://github.com/taqenoqo/dynloader#readme @package dynloader @version 0.1.0 module System.Plugins.Dynloader -- | e.g. -- --
-- f <- unsafeload [] [Prelude] "(+)" -- f 1 2 -- 3 --unsafeLoad :: [PackageName] -> [ModuleName] -> Expression -> IO a load :: [PackageName] -> [ModuleName] -> Expression -> IO Dynamic