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

README.md - github.com/torch/cwrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 87a2f0ba673c4ebc35ba7a7e8aecf52c4ceb4b03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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](doc/example.md)
  * [High Level Interface](doc/highlevelinterface.md)
  * [Argument Types](doc/argumenttypes.md)
  * [User Types](doc/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).