getModuleInfo {Aspell}R Documentation

Retrieve information about the aspell library's available modules

Description

This function provides a description of each of the modules that are available to the aspell spell checker library.

Usage

getModuleInfo(conf = createSpellConfig(), el = createModuleInfo)

Arguments

conf the modules are potentially specific to a given configuration, including paths to the modules, etc. This is the configuration object. The default version is used if none is provided and tis has no special settings.
el a function that is is called for each module description object at the C-level. The elements of that object are passed as individual arguments to the function. These are the name, the order number, library directory name, collection of dictionary directories, and a collection of dictionary extensions.

Value

A list of objects, each of which is created via a call to the function given as el.

Note

the dict\_dirs element will consistently be NA as we have been experiencing segmentation faults and hence crashes if this was included.

Author(s)

Duncan Temple Lang <duncan@wald.ucdavis.edu>

References

http://aspell.sourceforge.net

See Also

getDictInfo

Examples

 m = getModuleInfo()
 names(m)

    # Just get the names of the modules
  getModuleInfo( el = function(name, ...) name)

[Package Aspell version 0.2-0 Index]