kon/vendor/github.com/andybalholm/brotli
2024-07-02 16:36:04 +02:00
..
backward_references_hq.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
backward_references.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
bit_cost.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
bit_reader.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
block_splitter_command.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
block_splitter_distance.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
block_splitter_literal.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
block_splitter.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
brotli_bit_stream.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
cluster_command.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
cluster_distance.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
cluster_literal.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
cluster.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
command.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
compress_fragment_two_pass.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
compress_fragment.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
constants.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
context.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
decode.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
dictionary_hash.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
dictionary.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
encode.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
encoder_dict.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
entropy_encode_static.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
entropy_encode.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
fast_log.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
find_match_length.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
h5.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
h6.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
h10.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
hash_composite.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
hash_forgetful_chain.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
hash_longest_match_quickly.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
hash_rolling.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
hash.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
histogram.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
http.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
huffman.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
LICENSE feat: add stylix styling 2024-07-02 16:36:04 +02:00
literal_cost.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
memory.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
metablock_command.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
metablock_distance.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
metablock_literal.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
metablock.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
params.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
platform.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
prefix_dec.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
prefix.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
quality.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
reader.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
README.md feat: add stylix styling 2024-07-02 16:36:04 +02:00
ringbuffer.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
state.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
static_dict_lut.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
static_dict.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
symbol_list.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
transform.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
utf8_util.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
util.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
write_bits.go feat: add stylix styling 2024-07-02 16:36:04 +02:00
writer.go feat: add stylix styling 2024-07-02 16:36:04 +02:00

This package is a brotli compressor and decompressor implemented in Go. It was translated from the reference implementation (https://github.com/google/brotli) with the c2go tool at https://github.com/andybalholm/c2go.

I am using it in production with https://github.com/andybalholm/redwood.

API documentation is found at https://pkg.go.dev/github.com/andybalholm/brotli?tab=doc.