Auth Token:

calculator.multiplyFractions

Multiplies a list of fractions together and returns the result. If the list is empty, returns 1/1.

Parameters
Name Type Description Default
multiplicands array<Fraction> The fractions to multiply together
Returns
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.

Parameters
Name Type Description Default
prefix string the prefix to match ""
Returns
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.

Parameters
Name Type Description Default
word string the word to define
Returns
Type Description
string The definition.


dictionary.search

Search for dictionary entries containing a specific substring. Matching is case insensitive.

Parameters
Name Type Description Default
substring string the text to search for
Returns
Type Description
array<DictionaryEntry> All entries matching the query.