Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for moveToFrontDecoder (0.22 sec)

  1. src/compress/bzip2/move_to_front.go

    // as the symbol will be at the front of the list after the first access.
    type moveToFrontDecoder []byte
    
    // newMTFDecoder creates a move-to-front decoder with an explicit initial list
    // of symbols.
    func newMTFDecoder(symbols []byte) moveToFrontDecoder {
    	if len(symbols) > 256 {
    		panic("too many symbols")
    	}
    	return moveToFrontDecoder(symbols)
    }
    
    // newMTFDecoderWithRange creates a move-to-front decoder with an initial
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.8K bytes
    - Viewed (0)
Back to top