DecodingLayerArray is an array-based implementation of DecodingLayerContainer. Each DecodingLayer is searched linearly in an allocated slice in one-by-one fashion.
| 110 | // DecodingLayerContainer. Each DecodingLayer is searched linearly in |
| 111 | // an allocated slice in one-by-one fashion. |
| 112 | type DecodingLayerArray []decodingLayerElem |
| 113 | |
| 114 | // Put implements DecodingLayerContainer interface. |
| 115 | func (dl DecodingLayerArray) Put(d DecodingLayer) DecodingLayerContainer { |
no outgoing calls
no test coverage detected