* The :js:meth:`Array.includes` method determines whether a Sequence * includes a certain value among its entries, returning true or false as * appropriate. * @param elt * @returns
(elt: any)
| 1823 | * @returns |
| 1824 | */ |
| 1825 | includes(elt: any) { |
| 1826 | // @ts-ignore |
| 1827 | return this.has(elt); |
| 1828 | } |
| 1829 | /** |
| 1830 | * The :js:meth:`Array.entries` method returns a new iterator object that |
| 1831 | * contains the key/value pairs for each index in the ``Sequence``. |
no test coverage detected