AlgorithmDecompressor returns the decompressor field of algo. This is a function instead of a public method so that it is only callable by code that is allowed to import this internal subpackage.
(algo Algorithm)
| 69 | // This is a function instead of a public method so that it is only callable by code |
| 70 | // that is allowed to import this internal subpackage. |
| 71 | func AlgorithmDecompressor(algo Algorithm) DecompressorFunc { |
| 72 | return algo.decompressor |
| 73 | } |
| 74 | |
| 75 | // AlgorithmPrefix returns the prefix field of algo. |
| 76 | // This is a function instead of a public method so that it is only callable by code |
no outgoing calls
no test coverage detected
searching dependent graphs…