package brotli

/* Copyright 2013 Google Inc. All Rights Reserved.

   Distributed under MIT license.
   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/

/* Utilities for building Huffman decoding tables. */

type symbolList struct {
	storage []uint16
	offset  int
}

func symbolListGet( symbolList,  int) uint16 {
	return .storage[+.offset]
}

func symbolListPut( symbolList,  int,  uint16) {
	.storage[+.offset] = 
}