Replies: 1 comment 5 replies
-
It actually goes deeper than this. I've been looking into it a bit and done a tiny bit of work on affixes. First little PR is waiting. But I think it needs the main devs really.
This is mostly due to the affix engine originally being a way to compress a dictionary so the ones that saved the most space were used. Later on it was borrowed for grammar checking and grammar info started to be added. Part of the "deeper" I mentioned is that the same affix can have multiple meanings, especially depending on the base word: verb+s = 3rd person singular indicative bount noun+s = plural, noun+'s = possessive but noun+'s also = contraction of noun is and also noun has. But
I keep thinking about making a Our dictionary also does nothing for multi-word terms, of which there are several kinds, some of which can have features implemented in the same structure that is now named for its affix component. |
Beta Was this translation helpful? Give feedback.
-
-able
suffix (B
) will not add the adjective property to the result.-ation
. Considering there are many different suffixes in the dictionary, it seems that we will eventually run out of single symbol mnemonic. What is the plan for this?-ize
and-ation
can combine, but we cannot combine them in the reverse order. I guess thecross_product
option is for this, but how can we specify order?Beta Was this translation helpful? Give feedback.
All reactions