# Overview

## `Inequality {}`

The `Inequality` abstract [primitive wrapper object](https://developer.mozilla.org/en-US/docs/Glossary/Primitive#primitive_wrapper_objects_in_javascript) represents the [primitive value](https://docs.angular-package.dev/range-1/less/methods/valueof) **greater** or **less** than the given.

{% embed url="<https://github.com/angular-package/range/blob/main/src/lib/inequality.class.ts>" %}
`inequality.class.ts`
{% endembed %}

### Accessors

|                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| <p><strong>public get</strong> <a href="../accessors/get-greater#inequality.prototype.greater"><strong>greater()</strong></a>: <mark style="color:green;">Greater</mark><<mark style="color:green;">Value</mark>><br>The <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/get"><code>get</code></a> accessor obtains from the private <a href="properties/greater"><code>#greater</code></a> property an instance of the <a href="../greater"><code>Greater</code></a> with a <a href="../greater/methods/valueof">primitive value</a> from a given <a href="../constructor#value-value"><code>value</code></a> of the <a href=""><code>Inequality</code></a> constructor.</p> |
| <p><strong>public get</strong> <a href="../accessors/get-less#inequality.prototype.less"><strong>less()</strong></a>: <mark style="color:green;">Less</mark><<mark style="color:green;">Value</mark>><br>The <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/get"><code>get</code></a> accessor obtains from the private <a href="properties/less"><code>#less</code></a> property an instance of the <a href="../less"><code>Less</code></a> with a <a href="../less/methods/valueof">primitive value</a> from a given <a href="../constructor#value-value"><code>value</code></a> of the <a href=""><code>Inequality</code></a> constructor.</p>                            |

### Properties

|                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| <p><a href="properties/greater"><strong>#greater</strong></a>: <mark style="color:green;">Greater</mark><<mark style="color:green;">Value</mark>><br>Private property of the <a href="../greater"><code>Greater</code></a> primitive wrapper <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object"><code>object</code></a> indicates the value of the <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number"><code>number</code></a> type <strong>greater</strong> than the given.</p> |
| <p><a href="properties/less"><strong>#less</strong></a>: <mark style="color:green;">Less</mark><<mark style="color:green;">Value</mark>><br>Private property of the <a href="../less"><code>Less</code></a> primitive wrapper <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object"><code>object</code></a> indicates the value of <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number"><code>number</code></a> type <strong>less</strong> than the given.</p>                       |

### Methods

|                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| <p><strong>public</strong> <a href="methods/greaterthan"><strong>greaterThan()</strong></a>: <mark style="color:green;">boolean</mark><br>Checks whether the <a href="https://developer.mozilla.org/en-US/docs/Glossary/Primitive#primitive_wrapper_objects_in_javascript">primitive value</a> of a child class instance is <strong>greater</strong> than the given <a href="../methods/greaterthan#value-number"><code>value</code></a>.</p>                                                     |
| <p><strong>public</strong> <a href="methods/greaterthanevery"><strong>greaterThanEvery()</strong></a>: <mark style="color:green;">boolean</mark><br>Checks whether the <a href="https://developer.mozilla.org/en-US/docs/Glossary/Primitive#primitive_wrapper_objects_in_javascript">primitive value</a> of a child class instance is <strong>greater</strong> than <strong>every</strong> value of the given <a href="../methods/greaterthanevery#...values-number"><code>values</code></a>.</p> |
| <p><strong>public</strong> <a href="methods/greaterthansome"><strong>greaterThanSome()</strong></a>: <mark style="color:green;">boolean</mark><br>Checks whether the <a href="https://developer.mozilla.org/en-US/docs/Glossary/Primitive#primitive_wrapper_objects_in_javascript">primitive value</a> of a child class instance is <strong>greater</strong> than <strong>some</strong> given <a href="../methods/greaterthansome#...values-number"><code>values</code></a>.</p>                  |
| <p><strong>public</strong> <a href="methods/lessthan"><strong>lessThan()</strong></a>: <mark style="color:green;">boolean</mark><br>Checks whether the <a href="https://developer.mozilla.org/en-US/docs/Glossary/Primitive#primitive_wrapper_objects_in_javascript">primitive value</a> of a child class instance is <strong>less</strong> than the given <a href="../methods/lessthan#value-number"><code>value</code></a>.</p>                                                                 |
| <p><strong>public</strong> <a href="methods/lessthanevery"><strong>lessThanEvery()</strong></a>: <mark style="color:green;">boolean</mark><br>Checks whether the <a href="https://developer.mozilla.org/en-US/docs/Glossary/Primitive#primitive_wrapper_objects_in_javascript">primitive value</a> of a child class instance is <strong>less</strong> than <strong>every</strong> value of the given <a href="../methods/lessthanevery#...values-number"><code>values</code></a>.</p>             |
| <p><strong>public</strong> <a href="methods/lessthansome"><strong>lessThanSome()</strong></a>: <mark style="color:green;">boolean</mark><br>Checks whether the <a href="https://developer.mozilla.org/en-US/docs/Glossary/Primitive#primitive_wrapper_objects_in_javascript">primitive value</a> of a child class instance is <strong>less</strong> than <strong>some</strong> given <a href="../methods/lessthansome#...values-number"><code>values</code></a>.</p>                              |
