docs: split monolithic core-library.markdown into per-class docs under doc/site/core/

This commit is contained in:
Bob Nystrom
2015-01-18 23:36:36 +00:00
parent 25dfc4f5fa
commit a74797f333
17 changed files with 543 additions and 418 deletions
+20
View File
@@ -0,0 +1,20 @@
^title Object Class
^category core
### **!** operator
Returns `false`, since most objects are considered [true](control-flow.html#truth).
### **==**(other) and **!=**(other) operators
Compares two objects using built-in equality. This compares numbers by value,
and all other objects are compared by identity—two objects are equal only
if they are the exact same object.
### **toString**
A default string representation of the object.
### **type**
The [Class](#class-class) of the object.