Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
0e0773c6
Commit
0e0773c6
authored
Jun 29, 2015
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2860 from franckverrot/move-doc
Respect the directory structure of `include`
parents
f39a31a6
427cc64d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
20 deletions
+20
-20
doc/api/README.md
doc/api/README.md
+20
-20
doc/api/mruby/array.h.md
doc/api/mruby/array.h.md
+0
-0
doc/api/mruby/value.h.md
doc/api/mruby/value.h.md
+0
-0
No files found.
doc/api/README.md
View file @
0e0773c6
...
@@ -8,23 +8,23 @@ Header name|Features
...
@@ -8,23 +8,23 @@ Header name|Features
-----------|--------
-----------|--------
[
mrbconf.h
](
../mrbconf/README.md
)
|Defines macros for mruby configurations.
[
mrbconf.h
](
../mrbconf/README.md
)
|Defines macros for mruby configurations.
[
mruby.h
](
./mruby.h.md
)
|Main header of mruby C API. Include this first.
[
mruby.h
](
./mruby.h.md
)
|Main header of mruby C API. Include this first.
[
mruby/array.h
](
./mruby
.
array.h.md
)
|
`Array`
class.
[
mruby/array.h
](
./mruby
/
array.h.md
)
|
`Array`
class.
[
mruby/class.h
](
./mruby
.
class.h.md
)
|
`Class`
class.
[
mruby/class.h
](
./mruby
/
class.h.md
)
|
`Class`
class.
[
mruby/compile.h
](
./mruby
.
compile.h.md
)
|mruby compiler.
[
mruby/compile.h
](
./mruby
/
compile.h.md
)
|mruby compiler.
[
mruby/data.h
](
./mruby
.
data.h.md
)
|User defined object.
[
mruby/data.h
](
./mruby
/
data.h.md
)
|User defined object.
[
mruby/debug.h
](
./mruby
.
debug.h.md
)
|Debugging.
[
mruby/debug.h
](
./mruby
/
debug.h.md
)
|Debugging.
[
mruby/dump.h
](
./mruby
.
dump.h.md
)
|Dumping compiled mruby script.
[
mruby/dump.h
](
./mruby
/
dump.h.md
)
|Dumping compiled mruby script.
[
mruby/error.h
](
./mruby
.
error.h.md
)
|Error handling.
[
mruby/error.h
](
./mruby
/
error.h.md
)
|Error handling.
[
mruby/gc.h
](
./mruby
.
gc.h.md
)
|Uncommon memory management stuffs.
[
mruby/gc.h
](
./mruby
/
gc.h.md
)
|Uncommon memory management stuffs.
[
mruby/hash.h
](
./mruby
.
hash.h.md
)
|
`Hash`
class.
[
mruby/hash.h
](
./mruby
/
hash.h.md
)
|
`Hash`
class.
[
mruby/irep.h
](
./mruby
.
irep.h.md
)
|Compiled mruby script.
[
mruby/irep.h
](
./mruby
/
irep.h.md
)
|Compiled mruby script.
[
mruby/khash.h
](
./mruby
.
khash.h.md
)
|Defines of khash which is used in hash table of mruby.
[
mruby/khash.h
](
./mruby
/
khash.h.md
)
|Defines of khash which is used in hash table of mruby.
[
mruby/numeric.h
](
./mruby
.
numeric.h.md
)
|
`Numeric`
class and sub-classes of it.
[
mruby/numeric.h
](
./mruby
/
numeric.h.md
)
|
`Numeric`
class and sub-classes of it.
[
mruby/opode.h
](
./mruby
.
opcode.h.md
)
|Operation codes used in mruby VM.
[
mruby/opode.h
](
./mruby
/
opcode.h.md
)
|Operation codes used in mruby VM.
[
mruby/proc.h
](
./mruby
.
proc.h.md
)
|
`Proc`
class.
[
mruby/proc.h
](
./mruby
/
proc.h.md
)
|
`Proc`
class.
[
mruby/range.h
](
./mruby
.
range.h.md
)
|
`Range`
class.
[
mruby/range.h
](
./mruby
/
range.h.md
)
|
`Range`
class.
[
mruby/re.h
](
./mruby
.
re.h.md
)
|
`Regexp`
class.
[
mruby/re.h
](
./mruby
/
re.h.md
)
|
`Regexp`
class.
[
mruby/string.h
](
./mruby
.
string.h.md
)
|
`String`
class.
[
mruby/string.h
](
./mruby
/
string.h.md
)
|
`String`
class.
[
mruby/value.h
](
./mruby
.
value.h.md
)
|
`mrb_value`
functions and macros.
[
mruby/value.h
](
./mruby
/
value.h.md
)
|
`mrb_value`
functions and macros.
[
mruby/variable.h
](
./mruby
.
variable.h.md
)
|Functions to access to mruby variables.
[
mruby/variable.h
](
./mruby
/
variable.h.md
)
|Functions to access to mruby variables.
[
mruby/version.h
](
./mruby
.
version.h.md
)
|Macros of mruby version.
[
mruby/version.h
](
./mruby
/
version.h.md
)
|Macros of mruby version.
doc/api/array.h.md
→
doc/api/
mruby/
array.h.md
View file @
0e0773c6
File moved
doc/api/value.h.md
→
doc/api/
mruby/
value.h.md
View file @
0e0773c6
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment