mirror of
https://github.com/boostorg/bloom.git
synced 2026-01-19 04:02:11 +00:00
* removed unneeded explicit * fixed boundary results for capacity_for and fpr_for * renamed used_block_size to used_value_size * added reset(n,n) * added initial documentation draft * static asserted assumption on Block size * synced up naming in comment with that of docs * added implementation notes * editorial * expanded tables * removed unneeded explicit * fixed boundary results for capacity_for and fpr_for * renamed used_block_size to used_value_size * added reset(n,n) * added initial documentation draft * static asserted assumption on Block size * synced up naming in comment with that of docs * added implementation notes * editorial * added benchmarks * editorial * added configuration section * editorial * s/multiinsertion/multi-insertion * added section on use cases * editorial
23 lines
560 B
Plaintext
23 lines
560 B
Plaintext
# Copyright 2025 Joaquín M López Muñoz.
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
# (See accompanying file LICENSE_1_0.txt or copy at
|
|
# http://www.boost.org/LICENSE_1_0.txt)
|
|
#
|
|
# See http://www.boost.org/libs/bloom for library home page.
|
|
|
|
import asciidoctor ;
|
|
|
|
html bloom.html : bloom.adoc ;
|
|
|
|
install html_ : bloom.html : <location>html ;
|
|
|
|
pdf bloom.pdf : bloom.adoc ;
|
|
explicit bloom.pdf ;
|
|
|
|
install pdf_ : bloom.pdf : <location>bloom ;
|
|
explicit pdf_ ;
|
|
|
|
alias boostdoc ;
|
|
explicit boostdoc ;
|
|
alias boostrelease : html_ ;
|
|
explicit boostrelease ; |