Without the l parameter, this function returns the saved list of synonym words. If l is set, then this word list is saved for future use.
Arguments
- l
a grouped list of words
Examples
{
synonyms(list(c('package', 'library'), c('foo', 'bar', 'baz')))
synonyms()
}
#> [[1]]
#> [1] "package" "library"
#>
#> [[2]]
#> [1] "foo" "bar" "baz"
#>