calculator.multiplyFractions
Multiplies a list of fractions together and returns the result.
If the list is empty, returns 1/1.
Name | Type | Description | Default |
---|---|---|---|
multiplicands | array<Fraction> | The fractions to multiply together |
|
Type | Description |
---|---|
Fraction | The result of multiplying the given fractions together |
dictionary.list
List the dictionary words, optionally limiting the results to words beginning with the given prefix.
The matching is case insensitive.
Name | Type | Description | Default |
---|---|---|---|
prefix | string | the prefix to match |
""
|
Type | Description |
---|---|
array<string> | A list of words that start with the requested prefix, or an empty list if none were found. |
dictionary.lookUp
Look up the definition of a word in the dictionary.
Name | Type | Description | Default |
---|---|---|---|
word | string | the word to define |
|
Type | Description |
---|---|
string | The definition. |
dictionary.search
Search for dictionary entries containing a specific substring.
Matching is case insensitive.
Name | Type | Description | Default |
---|---|---|---|
substring | string | the text to search for |
|
Type | Description |
---|---|
array<DictionaryEntry> | All entries matching the query. |