% File src/library/base/man/lazyload.Rd % Part of the R package, http://www.R-project.org % Copyright 1995-2007 R Core Development Team % Distributed under GPL 2 or later \name{lazyLoad} \alias{lazyLoad} \title{Lazy Load a Database of R Objects} \description{ Lazy load a database of \R objects. } \usage{ lazyLoad(filebase, envir = parent.frame(), filter) } \arguments{ \item{filebase}{The file path to the database, with no extension.} \item{envir}{The environment into which objects are loaded.} \item{filter}{An optional function which when called on a a character vector of object names returns a logical vector: only objects for which this is true will be loaded.} } \details{ This is the workhorse function called by the package loader to load the code for a package from a database. The database consists of two binary files, \file{\var{filebase}.rdb} (the objects) and \file{\var{filebase}.rdx} (an index). The objects are not themselves loaded into \code{envir}: rather promises are created that will load the object from the database on first access. (See \code{\link{delayedAssign}}.) } \author{Luke Tierney} \seealso{ \code{\link{makeLazyLoading}} } \keyword{internal}