AlgorithmChain struct is the combined implementation of Algorithm. It is a good example how weighting can be changed by a different implementations. It can weight a word or phrase by comparing them.
| 54 | // good example how weighting can be changed by a different implementations. It |
| 55 | // can weight a word or phrase by comparing them. |
| 56 | type AlgorithmChain struct{} |
| 57 | |
| 58 | // NewAlgorithmChain constructor retrieves an AlgorithmChain pointer. |
| 59 | func NewAlgorithmChain() *AlgorithmChain { |
nothing calls this directly
no outgoing calls
no test coverage detected