diff options
| author | Daniel Bovensiepen <[email protected]> | 2013-06-15 02:41:43 +0800 |
|---|---|---|
| committer | Daniel Bovensiepen <[email protected]> | 2013-06-15 02:41:43 +0800 |
| commit | f64e104da6e554d25197f416b6275d73503dd4d5 (patch) | |
| tree | 74c588400ba9e25a2c7978124eb83816cb81570e /doc | |
| parent | 124fd73c7976e28e736c47f86be3fb7fb6788132 (diff) | |
| download | mruby-f64e104da6e554d25197f416b6275d73503dd4d5.tar.gz mruby-f64e104da6e554d25197f416b6275d73503dd4d5.zip | |
Add init language documentation
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/language/README.md | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/doc/language/README.md b/doc/language/README.md new file mode 100644 index 000000000..8a980679a --- /dev/null +++ b/doc/language/README.md @@ -0,0 +1,101 @@ +# Features + +mruby is an implementation of the Ruby programming language. +These documents are describing the language features and libraries +which are provided together with mruby. + +## Core Classes and Modules + +### Array + +The class Array is an implementation of the Array data type in Ruby + +[Wikipedia - Array data type](http://en.wikipedia.org/wiki/Array_data_type) +> In computer science, an array type is a data type that is meant to describe +> a collection of elements (values or variables), each selected by one or +> more indices (identifying keys) that can be computed at run time by the +> program. + +#### Methods + +##### * + +##### + + +##### << + +##### [] + +##### []= + +##### clear + +##### concat + +##### delete_at + +##### empty? + +##### first + +##### index + +##### initialize_copy + +##### join + +##### last + +##### length + +##### pop + +##### push + +##### replace + +##### reverse + +##### reverse! + +##### rindex + +##### shift + +##### size + +##### slice + +##### unshift + +##### inspect + +##### to_s + +##### == + +##### eql? + +##### <=> + +### Class + +### Comparable + +### Enumerable + +### Hash + +### Numeric + +### Object + +### Proc + +### Range + +### String + +### Symbol + +## Standard Library |
