Equality docs

This commit is contained in:
hydrabolt
2015-11-20 21:05:55 +00:00
parent 4a7f282ba9
commit 882dde0610
3 changed files with 24 additions and 0 deletions

20
docs/docs_equality.rst Normal file
View File

@@ -0,0 +1,20 @@
.. include:: ./vars.rst
Equality
========
The Equality class is used to see if two objects are equal, based on ``object_1.id === object_2.id``.
If any class in Discord extends equality, it means you should never the default equality operands (``==`` & ``===``) as they could potentially be different instances and therefore appear not to be equal. Instead, use ``equalityObject.equals()`` as shown below.
Functions
---------
--------
equals(object)
~~~~~~~~~~~~~~
Returns true if the specified object is the same as this one.
- **object** - Any `object` with an ``id`` property.