Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.md « doc - github.com/torch/cwrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ba7b6120de25269e28463c1850a3a478ca935b20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# CWrap package #

The __cwrap__ package helps you to automate the generation of Lua/C wrappers
around existing C functions, such that these functions would be callable
from Lua. This package is used by the __torch__ package, but does not depend on
anything, and could be used by anyone using Lua. 
The documentation is organized as follows :

  * [Example Use Case](example.md)
  * [High Level Interface](highlevelinterface.md)
  * [Argument Types](argumenttypes.md)
  * [User Types](usertypes.md)

__DISCLAIMER__ Before going any further, we assume the reader has a good
knowledge of how to interface C functions with Lua. A good start would be
the [Lua reference manual](http://www.lua.org/manual/5.1), or the book
[Programming in Lua](http://www.inf.puc-rio.br/~roberto/pil2).