Aerys\HPack::huffman_lens_init PHP Method

huffman_lens_init() private static method

private static huffman_lens_init ( )
    private static function huffman_lens_init()
    {
        $lens = [];
        for ($chr = 0; $chr <= 0xff; $chr++) {
            $lens[chr($chr)] = self::HUFFMAN_CODE_LENGTHS[$chr];
        }
        return $lens;
    }