xlld.wrap

Autowrapping of D functions to be called from Excel. Generally this will be enough:

import xlld;
mixin wrapAll!("mymodule1", "mymodule2", ...);

All public functions in the modules in the call to `wrapAll` will then be available
to be called from Excel.

Modules

traits
module xlld.wrap.traits

This module implements the compile-time reflection machinery to automatically register all D functions that are eligible in a compile-time define list of modules to be called from Excel.

worksheet
module xlld.wrap.worksheet

Interface for registering worksheet functions with Excel

wrap
module xlld.wrap.wrap

Wrapper module for Excel. This module contains the functionality that autowraps D code for use within Excel.

Public Imports

xlld.wrap.wrap
public import xlld.wrap.wrap;
Undocumented in source.
xlld.wrap.traits
public import xlld.wrap.traits;
Undocumented in source.
xlld.wrap.worksheet
public import xlld.wrap.worksheet;
Undocumented in source.

Meta