From 92c06d4023a41c047403e13933a8675af9151a5c Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Wed, 22 Jul 2015 23:06:26 -0400 Subject: [PATCH] lib: add a README for standard Signed-off-by: Jean Privat --- lib/standard/README.md | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 lib/standard/README.md diff --git a/lib/standard/README.md b/lib/standard/README.md new file mode 100644 index 0000000..cd780d0 --- /dev/null +++ b/lib/standard/README.md @@ -0,0 +1,46 @@ +# Nit Core Library + +Core classes and methods used by default by Nit programs and libraries. + +## Core Basic Types and Operations + +[[doc:kernel]] + +### Object + +[[doc:Object]] + +#### Equality + +[[doc:Object::==]] +[[doc:Object::!=]] +[[doc:Object::hash]] +[[doc:Object::is_same_instance]] +[[doc:Object::object_id]] + +#### Debuging + +[[doc:Object::output]] +[[doc:Object::output_class_name]] +[[doc:Object::is_same_type]] + +### Sys + +[[doc:Sys]] + +#### Program Execution + +[[doc:Sys::main]] +[[doc:Sys::run]] + +### Other + +[[list:kernel]] + +## Core Collections + +[[doc:collection]] + +## String and Text manipulation + +[[doc:text]] -- 1.7.9.5