diff options
| author | Daniel Bovensiepen <[email protected]> | 2013-06-17 04:51:20 +0800 |
|---|---|---|
| committer | Daniel Bovensiepen <[email protected]> | 2013-06-17 04:51:20 +0800 |
| commit | ac4844757d2b4db1b985cfefbba0d6c966ef209a (patch) | |
| tree | e89447532640b1133b2d54fc8782da1e3e9f025b /doc | |
| parent | fd6e624ba7f6cd7df49a49080b783dd539761eb9 (diff) | |
| download | mruby-ac4844757d2b4db1b985cfefbba0d6c966ef209a.tar.gz mruby-ac4844757d2b4db1b985cfefbba0d6c966ef209a.zip | |
Redirect documentation to Core.md
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/language/README.md | 98 |
1 files changed, 3 insertions, 95 deletions
diff --git a/doc/language/README.md b/doc/language/README.md index 8a980679a..67946fe64 100644 --- a/doc/language/README.md +++ b/doc/language/README.md @@ -1,101 +1,9 @@ -# Features +# Language 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 +## Built-In Class 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 +see *doc/lang/Core.md* |
