Source File
params.go
Belonging Package
github.com/andybalholm/brotli
package brotli/* Copyright 2017 Google Inc. All Rights Reserved.Distributed under MIT license.See file LICENSE for detail or copy at https://opensource.org/licenses/MIT*//* Parameters for the Brotli encoder with chosen quality levels. */type hasherParams struct {type_ intbucket_bits intblock_bits inthash_len intnum_last_distances_to_check int}type distanceParams struct {distance_postfix_bits uint32num_direct_distance_codes uint32alphabet_size uint32max_distance uint}/* Encoding parameters */type encoderParams struct {mode intquality intlgwin uintlgblock intsize_hint uintdisable_literal_context_modeling boollarge_window boolhasher hasherParamsdist distanceParamsdictionary encoderDictionary}
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |