├── .github └── funding.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── documentation ├── assets │ ├── github-banner.png │ ├── libraries.css │ └── libraries.js ├── crate.md ├── external │ ├── r7rs-small-spec │ │ ├── ebook.pdf │ │ ├── errata.txt │ │ ├── html │ │ │ ├── r7rs-ebook.css │ │ │ ├── r7rs-ebook.html │ │ │ ├── r7rs.css │ │ │ ├── r7rs.html │ │ │ └── readme.txt │ │ ├── original.pdf │ │ ├── recompiled.pdf │ │ ├── sources │ │ │ ├── algol60.cls │ │ │ ├── basic.tex │ │ │ ├── bib.tex │ │ │ ├── commands.tex │ │ │ ├── derive.tex │ │ │ ├── example.tex │ │ │ ├── expr.tex │ │ │ ├── features.tex │ │ │ ├── first.tex │ │ │ ├── index.tex │ │ │ ├── intro-ebook.tex │ │ │ ├── intro.tex │ │ │ ├── lex.tex │ │ │ ├── notes.tex │ │ │ ├── overview-body.tex │ │ │ ├── overview.tex │ │ │ ├── procs.tex │ │ │ ├── prog.tex │ │ │ ├── r7rs-ebook.tex │ │ │ ├── r7rs.tex │ │ │ ├── repository.tex │ │ │ ├── sem.tex │ │ │ ├── stdmod-raw.tex │ │ │ ├── stdmod.tex │ │ │ ├── struct.tex │ │ │ └── syn.tex │ │ └── stripped │ │ │ ├── r7rs-contents.tex │ │ │ ├── r7rs.pdf │ │ │ └── r7rs.tex │ ├── readme.txt │ └── sources.txt ├── libraries-md │ ├── _libraries.md │ ├── r7rs │ │ ├── _index.md │ │ ├── appendices │ │ │ ├── _index.md │ │ │ ├── acknowledgments.md │ │ │ ├── additional-material.md │ │ │ ├── attribution.md │ │ │ ├── authors.md │ │ │ ├── background.md │ │ │ ├── basic-concepts.md │ │ │ ├── derived-expressions.md │ │ │ ├── expressions.md │ │ │ ├── formal-syntax.md │ │ │ ├── internal-definitions.md │ │ │ ├── introduction.md │ │ │ ├── language-changes.md │ │ │ ├── lexical-conventions.md │ │ │ ├── libraries.md │ │ │ ├── overview.md │ │ │ ├── programs.md │ │ │ ├── read-eval-print-loop.md │ │ │ └── standard-feature-identifiers.md │ │ ├── categories │ │ │ ├── _index.md │ │ │ ├── expressions-bindings.md │ │ │ ├── expressions-delayed.md │ │ │ ├── expressions-dynamic-bindings.md │ │ │ ├── expressions-exceptions.md │ │ │ ├── expressions-iteration.md │ │ │ ├── expressions-lambda.md │ │ │ ├── expressions-quotation.md │ │ │ ├── expressions-sequencing.md │ │ │ ├── expressions-syntax-bindings.md │ │ │ ├── expressions.md │ │ │ ├── libraries.md │ │ │ ├── types-characters.md │ │ │ ├── types-constants.md │ │ │ ├── types-disjoint.md │ │ │ ├── types-lists.md │ │ │ ├── types-miscellaneous.md │ │ │ ├── types-numbers.md │ │ │ ├── types-ports.md │ │ │ └── types.md │ │ ├── definitions │ │ │ ├── ZZZZ__2a.md │ │ │ ├── ZZZZ__2b.md │ │ │ ├── ZZZZ__2d.md │ │ │ ├── ZZZZ__2e_2e_2e.md │ │ │ ├── ZZZZ__2f.md │ │ │ ├── ZZZZ__3c.md │ │ │ ├── ZZZZ__3c_3d.md │ │ │ ├── ZZZZ__3d.md │ │ │ ├── ZZZZ__3d_3e.md │ │ │ ├── ZZZZ__3e.md │ │ │ ├── ZZZZ__3e_3d.md │ │ │ ├── ZZZZ__5f.md │ │ │ ├── _index.md │ │ │ ├── abs.md │ │ │ ├── acos.md │ │ │ ├── and.md │ │ │ ├── angle.md │ │ │ ├── append.md │ │ │ ├── apply.md │ │ │ ├── asin.md │ │ │ ├── assoc.md │ │ │ ├── assq.md │ │ │ ├── assv.md │ │ │ ├── atan.md │ │ │ ├── begin.md │ │ │ ├── binary-port_3f.md │ │ │ ├── boolean_3d_3f.md │ │ │ ├── boolean_3f.md │ │ │ ├── bytevector-append.md │ │ │ ├── bytevector-copy.md │ │ │ ├── bytevector-copy_21.md │ │ │ ├── bytevector-length.md │ │ │ ├── bytevector-u8-ref.md │ │ │ ├── bytevector-u8-set_21.md │ │ │ ├── bytevector.md │ │ │ ├── bytevector_3f.md │ │ │ ├── caaaar.md │ │ │ ├── caaadr.md │ │ │ ├── caaar.md │ │ │ ├── caadar.md │ │ │ ├── caaddr.md │ │ │ ├── caadr.md │ │ │ ├── caar.md │ │ │ ├── cadaar.md │ │ │ ├── cadadr.md │ │ │ ├── cadar.md │ │ │ ├── caddar.md │ │ │ ├── cadddr.md │ │ │ ├── caddr.md │ │ │ ├── cadr.md │ │ │ ├── call-with-current-continuation.md │ │ │ ├── call-with-input-file.md │ │ │ ├── call-with-output-file.md │ │ │ ├── call-with-port.md │ │ │ ├── call-with-values.md │ │ │ ├── car.md │ │ │ ├── case-lambda.md │ │ │ ├── case.md │ │ │ ├── cdaaar.md │ │ │ ├── cdaadr.md │ │ │ ├── cdaar.md │ │ │ ├── cdadar.md │ │ │ ├── cdaddr.md │ │ │ ├── cdadr.md │ │ │ ├── cdar.md │ │ │ ├── cddaar.md │ │ │ ├── cddadr.md │ │ │ ├── cddar.md │ │ │ ├── cdddar.md │ │ │ ├── cddddr.md │ │ │ ├── cdddr.md │ │ │ ├── cddr.md │ │ │ ├── cdr.md │ │ │ ├── ceiling.md │ │ │ ├── char-_3e_integer.md │ │ │ ├── char-alphabetic_3f.md │ │ │ ├── char-ci_3c_3d_3f.md │ │ │ ├── char-ci_3c_3f.md │ │ │ ├── char-ci_3d_3f.md │ │ │ ├── char-ci_3e_3d_3f.md │ │ │ ├── char-ci_3e_3f.md │ │ │ ├── char-downcase.md │ │ │ ├── char-foldcase.md │ │ │ ├── char-lower-case_3f.md │ │ │ ├── char-numeric_3f.md │ │ │ ├── char-ready_3f.md │ │ │ ├── char-upcase.md │ │ │ ├── char-upper-case_3f.md │ │ │ ├── char-whitespace_3f.md │ │ │ ├── char_3c_3d_3f.md │ │ │ ├── char_3c_3f.md │ │ │ ├── char_3d_3f.md │ │ │ ├── char_3e_3d_3f.md │ │ │ ├── char_3e_3f.md │ │ │ ├── char_3f.md │ │ │ ├── close-input-port.md │ │ │ ├── close-output-port.md │ │ │ ├── close-port.md │ │ │ ├── command-line.md │ │ │ ├── complex_3f.md │ │ │ ├── cond-expand.md │ │ │ ├── cond.md │ │ │ ├── cons.md │ │ │ ├── cos.md │ │ │ ├── current-error-port.md │ │ │ ├── current-input-port.md │ │ │ ├── current-jiffy.md │ │ │ ├── current-output-port.md │ │ │ ├── current-second.md │ │ │ ├── define-record-type.md │ │ │ ├── define-syntax.md │ │ │ ├── define-values.md │ │ │ ├── define.md │ │ │ ├── delay-force.md │ │ │ ├── delay.md │ │ │ ├── delete-file.md │ │ │ ├── denominator.md │ │ │ ├── digit-value.md │ │ │ ├── display.md │ │ │ ├── do.md │ │ │ ├── dynamic-wind.md │ │ │ ├── else.md │ │ │ ├── emergency-exit.md │ │ │ ├── environment.md │ │ │ ├── eof-object.md │ │ │ ├── eof-object_3f.md │ │ │ ├── eq_3f.md │ │ │ ├── equal_3f.md │ │ │ ├── eqv_3f.md │ │ │ ├── error-object-irritants.md │ │ │ ├── error-object-message.md │ │ │ ├── error-object_3f.md │ │ │ ├── error.md │ │ │ ├── eval.md │ │ │ ├── even_3f.md │ │ │ ├── exact-integer-sqrt.md │ │ │ ├── exact-integer_3f.md │ │ │ ├── exact.md │ │ │ ├── exact_3f.md │ │ │ ├── exit.md │ │ │ ├── exp.md │ │ │ ├── expt.md │ │ │ ├── features.md │ │ │ ├── file-error_3f.md │ │ │ ├── file-exists_3f.md │ │ │ ├── finite_3f.md │ │ │ ├── floor-quotient.md │ │ │ ├── floor-remainder.md │ │ │ ├── floor.md │ │ │ ├── floor_2f.md │ │ │ ├── flush-output-port.md │ │ │ ├── for-each.md │ │ │ ├── force.md │ │ │ ├── gcd.md │ │ │ ├── get-environment-variable.md │ │ │ ├── get-environment-variables.md │ │ │ ├── get-output-bytevector.md │ │ │ ├── get-output-string.md │ │ │ ├── guard.md │ │ │ ├── if.md │ │ │ ├── imag-part.md │ │ │ ├── import.md │ │ │ ├── include-ci.md │ │ │ ├── include.md │ │ │ ├── inexact.md │ │ │ ├── inexact_3f.md │ │ │ ├── infinite_3f.md │ │ │ ├── input-port-open_3f.md │ │ │ ├── input-port_3f.md │ │ │ ├── integer-_3e_char.md │ │ │ ├── integer_3f.md │ │ │ ├── interaction-environment.md │ │ │ ├── jiffies-per-second.md │ │ │ ├── lambda.md │ │ │ ├── lcm.md │ │ │ ├── length.md │ │ │ ├── let-syntax.md │ │ │ ├── let-values.md │ │ │ ├── let.md │ │ │ ├── let_2a.md │ │ │ ├── let_2a_-values.md │ │ │ ├── letrec-syntax.md │ │ │ ├── letrec.md │ │ │ ├── letrec_2a.md │ │ │ ├── list-_3e_string.md │ │ │ ├── list-_3e_vector.md │ │ │ ├── list-copy.md │ │ │ ├── list-ref.md │ │ │ ├── list-set_21.md │ │ │ ├── list-tail.md │ │ │ ├── list.md │ │ │ ├── list_3f.md │ │ │ ├── load.md │ │ │ ├── log.md │ │ │ ├── magnitude.md │ │ │ ├── make-bytevector.md │ │ │ ├── make-list.md │ │ │ ├── make-parameter.md │ │ │ ├── make-polar.md │ │ │ ├── make-promise.md │ │ │ ├── make-rectangular.md │ │ │ ├── make-string.md │ │ │ ├── make-vector.md │ │ │ ├── map.md │ │ │ ├── max.md │ │ │ ├── member.md │ │ │ ├── memq.md │ │ │ ├── memv.md │ │ │ ├── min.md │ │ │ ├── nan_3f.md │ │ │ ├── negative_3f.md │ │ │ ├── newline.md │ │ │ ├── not.md │ │ │ ├── null-environment.md │ │ │ ├── null_3f.md │ │ │ ├── number-_3e_string.md │ │ │ ├── number_3f.md │ │ │ ├── numerator.md │ │ │ ├── odd_3f.md │ │ │ ├── open-binary-input-file.md │ │ │ ├── open-binary-output-file.md │ │ │ ├── open-input-bytevector.md │ │ │ ├── open-input-file.md │ │ │ ├── open-input-string.md │ │ │ ├── open-output-bytevector.md │ │ │ ├── open-output-file.md │ │ │ ├── open-output-string.md │ │ │ ├── or.md │ │ │ ├── output-port-open_3f.md │ │ │ ├── output-port_3f.md │ │ │ ├── pair_3f.md │ │ │ ├── parameterize.md │ │ │ ├── peek-char.md │ │ │ ├── peek-u8.md │ │ │ ├── port_3f.md │ │ │ ├── positive_3f.md │ │ │ ├── procedure_3f.md │ │ │ ├── promise_3f.md │ │ │ ├── quasiquote.md │ │ │ ├── quote.md │ │ │ ├── raise-continuable.md │ │ │ ├── raise.md │ │ │ ├── rational_3f.md │ │ │ ├── rationalize.md │ │ │ ├── read-bytevector.md │ │ │ ├── read-bytevector_21.md │ │ │ ├── read-char.md │ │ │ ├── read-error_3f.md │ │ │ ├── read-line.md │ │ │ ├── read-string.md │ │ │ ├── read-u8.md │ │ │ ├── read.md │ │ │ ├── real-part.md │ │ │ ├── real_3f.md │ │ │ ├── reverse.md │ │ │ ├── round.md │ │ │ ├── scheme-report-environment.md │ │ │ ├── set-car_21.md │ │ │ ├── set-cdr_21.md │ │ │ ├── set_21.md │ │ │ ├── sin.md │ │ │ ├── sqrt.md │ │ │ ├── square.md │ │ │ ├── string-_3e_list.md │ │ │ ├── string-_3e_number.md │ │ │ ├── string-_3e_symbol.md │ │ │ ├── string-_3e_utf8.md │ │ │ ├── string-_3e_vector.md │ │ │ ├── string-append.md │ │ │ ├── string-ci_3c_3d_3f.md │ │ │ ├── string-ci_3c_3f.md │ │ │ ├── string-ci_3d_3f.md │ │ │ ├── string-ci_3e_3d_3f.md │ │ │ ├── string-ci_3e_3f.md │ │ │ ├── string-copy.md │ │ │ ├── string-copy_21.md │ │ │ ├── string-downcase.md │ │ │ ├── string-fill_21.md │ │ │ ├── string-foldcase.md │ │ │ ├── string-for-each.md │ │ │ ├── string-length.md │ │ │ ├── string-map.md │ │ │ ├── string-ref.md │ │ │ ├── string-set_21.md │ │ │ ├── string-upcase.md │ │ │ ├── string.md │ │ │ ├── string_3c_3d_3f.md │ │ │ ├── string_3c_3f.md │ │ │ ├── string_3d_3f.md │ │ │ ├── string_3e_3d_3f.md │ │ │ ├── string_3e_3f.md │ │ │ ├── string_3f.md │ │ │ ├── substring.md │ │ │ ├── symbol-_3e_string.md │ │ │ ├── symbol_3d_3f.md │ │ │ ├── symbol_3f.md │ │ │ ├── syntax-error.md │ │ │ ├── syntax-rules.md │ │ │ ├── tan.md │ │ │ ├── textual-port_3f.md │ │ │ ├── truncate-quotient.md │ │ │ ├── truncate-remainder.md │ │ │ ├── truncate.md │ │ │ ├── truncate_2f.md │ │ │ ├── u8-ready_3f.md │ │ │ ├── unless.md │ │ │ ├── unquote-splicing.md │ │ │ ├── unquote.md │ │ │ ├── utf8-_3e_string.md │ │ │ ├── values.md │ │ │ ├── vector-_3e_list.md │ │ │ ├── vector-_3e_string.md │ │ │ ├── vector-append.md │ │ │ ├── vector-copy.md │ │ │ ├── vector-copy_21.md │ │ │ ├── vector-fill_21.md │ │ │ ├── vector-for-each.md │ │ │ ├── vector-length.md │ │ │ ├── vector-map.md │ │ │ ├── vector-ref.md │ │ │ ├── vector-set_21.md │ │ │ ├── vector.md │ │ │ ├── vector_3f.md │ │ │ ├── when.md │ │ │ ├── with-exception-handler.md │ │ │ ├── with-input-from-file.md │ │ │ ├── with-output-to-file.md │ │ │ ├── write-bytevector.md │ │ │ ├── write-char.md │ │ │ ├── write-shared.md │ │ │ ├── write-simple.md │ │ │ ├── write-string.md │ │ │ ├── write-u8.md │ │ │ ├── write.md │ │ │ └── zero_3f.md │ │ ├── exports │ │ │ ├── _index.md │ │ │ ├── scheme.md │ │ │ ├── scheme_3a_base.md │ │ │ ├── scheme_3a_case-lambda.md │ │ │ ├── scheme_3a_char.md │ │ │ ├── scheme_3a_complex.md │ │ │ ├── scheme_3a_cxr.md │ │ │ ├── scheme_3a_eval.md │ │ │ ├── scheme_3a_file.md │ │ │ ├── scheme_3a_inexact.md │ │ │ ├── scheme_3a_lazy.md │ │ │ ├── scheme_3a_load.md │ │ │ ├── scheme_3a_process-context.md │ │ │ ├── scheme_3a_r5rs.md │ │ │ ├── scheme_3a_read.md │ │ │ ├── scheme_3a_repl.md │ │ │ ├── scheme_3a_time.md │ │ │ └── scheme_3a_write.md │ │ └── types │ │ │ ├── _index.md │ │ │ ├── any.md │ │ │ ├── assoc-list-not-null.md │ │ │ ├── assoc-list.md │ │ │ ├── atomic.md │ │ │ ├── binary-input-port-closed.md │ │ │ ├── binary-input-port-eof.md │ │ │ ├── binary-input-port-open.md │ │ │ ├── binary-input-port.md │ │ │ ├── binary-output-port-closed.md │ │ │ ├── binary-output-port-open.md │ │ │ ├── binary-output-port.md │ │ │ ├── binary-port-closed.md │ │ │ ├── binary-port-open.md │ │ │ ├── binary-port.md │ │ │ ├── boolean.md │ │ │ ├── byte-ascii.md │ │ │ ├── byte-or-eof.md │ │ │ ├── byte.md │ │ │ ├── bytevector-empty.md │ │ │ ├── bytevector-input-port.md │ │ │ ├── bytevector-not-empty-or-eof.md │ │ │ ├── bytevector-not-empty.md │ │ │ ├── bytevector-or-eof.md │ │ │ ├── bytevector-output-port.md │ │ │ ├── bytevector-port.md │ │ │ ├── bytevector.md │ │ │ ├── character-alphabetic-lower-case.md │ │ │ ├── character-alphabetic-upper-case.md │ │ │ ├── character-alphabetic.md │ │ │ ├── character-ascii-alphabetic-lower-case.md │ │ │ ├── character-ascii-alphabetic-upper-case.md │ │ │ ├── character-ascii-alphabetic.md │ │ │ ├── character-ascii-numeric.md │ │ │ ├── character-ascii-whitespace.md │ │ │ ├── character-ascii.md │ │ │ ├── character-numeric.md │ │ │ ├── character-or-eof.md │ │ │ ├── character-whitespace.md │ │ │ ├── character.md │ │ │ ├── code-point-ascii.md │ │ │ ├── code-point-unicode.md │ │ │ ├── complex-inf.md │ │ │ ├── complex-nan.md │ │ │ ├── complex-not-inf-not-nan.md │ │ │ ├── complex-not-inf.md │ │ │ ├── complex-not-nan.md │ │ │ ├── complex-not-zero-not-nan.md │ │ │ ├── complex-not-zero.md │ │ │ ├── complex-zero.md │ │ │ ├── complex.md │ │ │ ├── eof-object.md │ │ │ ├── error-object.md │ │ │ ├── eval-environment-import.md │ │ │ ├── eval-environment-version.md │ │ │ ├── eval-environment.md │ │ │ ├── eval-expression.md │ │ │ ├── exact-complex.md │ │ │ ├── exact-integer-negative-or-zero.md │ │ │ ├── exact-integer-negative.md │ │ │ ├── exact-integer-not-zero.md │ │ │ ├── exact-integer-positive-or-zero.md │ │ │ ├── exact-integer-positive.md │ │ │ ├── exact-integer-zero.md │ │ │ ├── exact-integer.md │ │ │ ├── exact-number.md │ │ │ ├── exact-rational.md │ │ │ ├── exact-real.md │ │ │ ├── exception-handler.md │ │ │ ├── exception.md │ │ │ ├── false.md │ │ │ ├── for-each-procedure.md │ │ │ ├── halt.md │ │ │ ├── inexact-complex-not-inf-not-nan.md │ │ │ ├── inexact-complex-not-inf.md │ │ │ ├── inexact-complex-not-nan.md │ │ │ ├── inexact-complex.md │ │ │ ├── inexact-integer.md │ │ │ ├── inexact-number-not-inf-not-nan.md │ │ │ ├── inexact-number-not-inf.md │ │ │ ├── inexact-number-not-nan.md │ │ │ ├── inexact-number.md │ │ │ ├── inexact-rational.md │ │ │ ├── inexact-real-not-inf-not-nan.md │ │ │ ├── inexact-real-not-inf.md │ │ │ ├── inexact-real-not-nan.md │ │ │ ├── inexact-real.md │ │ │ ├── input-port-closed.md │ │ │ ├── input-port-eof.md │ │ │ ├── input-port-open.md │ │ │ ├── input-port.md │ │ │ ├── integer-even.md │ │ │ ├── integer-negative-or-zero.md │ │ │ ├── integer-negative.md │ │ │ ├── integer-not-zero.md │ │ │ ├── integer-odd.md │ │ │ ├── integer-positive-or-zero.md │ │ │ ├── integer-positive.md │ │ │ ├── integer-zero.md │ │ │ ├── integer.md │ │ │ ├── list-circular.md │ │ │ ├── list-dotted-not-null.md │ │ │ ├── list-dotted.md │ │ │ ├── list-not-circular.md │ │ │ ├── list-not-null-or-false.md │ │ │ ├── list-not-null.md │ │ │ ├── list-or-false.md │ │ │ ├── list-proper-not-null.md │ │ │ ├── list-proper.md │ │ │ ├── list.md │ │ │ ├── map-procedure.md │ │ │ ├── null.md │ │ │ ├── number-inf.md │ │ │ ├── number-nan.md │ │ │ ├── number-negative-not-inf.md │ │ │ ├── number-negative-or-zero-not-inf.md │ │ │ ├── number-negative-or-zero.md │ │ │ ├── number-negative.md │ │ │ ├── number-not-inf-not-nan.md │ │ │ ├── number-not-inf.md │ │ │ ├── number-not-nan.md │ │ │ ├── number-not-zero-not-nan.md │ │ │ ├── number-not-zero.md │ │ │ ├── number-or-false.md │ │ │ ├── number-positive-not-inf.md │ │ │ ├── number-positive-or-zero-not-inf.md │ │ │ ├── number-positive-or-zero.md │ │ │ ├── number-positive.md │ │ │ ├── number-radix.md │ │ │ ├── number-zero.md │ │ │ ├── number.md │ │ │ ├── output-port-closed.md │ │ │ ├── output-port-open.md │ │ │ ├── output-port.md │ │ │ ├── pair.md │ │ │ ├── parameter.md │ │ │ ├── path-string.md │ │ │ ├── port-closed.md │ │ │ ├── port-open.md │ │ │ ├── port.md │ │ │ ├── procedure-0.md │ │ │ ├── procedure-1.md │ │ │ ├── procedure-2.md │ │ │ ├── procedure-3.md │ │ │ ├── procedure-4.md │ │ │ ├── procedure-4_2b.md │ │ │ ├── procedure.md │ │ │ ├── promise.md │ │ │ ├── range-end.md │ │ │ ├── range-length-not-zero-or-eof.md │ │ │ ├── range-length-not-zero.md │ │ │ ├── range-length-zero.md │ │ │ ├── range-length.md │ │ │ ├── range-offset.md │ │ │ ├── range-start.md │ │ │ ├── range-value.md │ │ │ ├── rational-negative-or-zero.md │ │ │ ├── rational-negative.md │ │ │ ├── rational-not-zero.md │ │ │ ├── rational-positive-or-zero.md │ │ │ ├── rational-positive.md │ │ │ ├── rational-zero.md │ │ │ ├── rational.md │ │ │ ├── real-inf.md │ │ │ ├── real-nan.md │ │ │ ├── real-negative-not-inf.md │ │ │ ├── real-negative-or-zero-not-inf.md │ │ │ ├── real-negative-or-zero.md │ │ │ ├── real-negative.md │ │ │ ├── real-not-inf-not-nan.md │ │ │ ├── real-not-inf.md │ │ │ ├── real-not-nan.md │ │ │ ├── real-not-zero-not-nan.md │ │ │ ├── real-not-zero.md │ │ │ ├── real-positive-not-inf.md │ │ │ ├── real-positive-or-zero-not-inf.md │ │ │ ├── real-positive-or-zero.md │ │ │ ├── real-positive.md │ │ │ ├── real-zero.md │ │ │ ├── real.md │ │ │ ├── string-empty.md │ │ │ ├── string-input-port.md │ │ │ ├── string-not-empty-or-eof.md │ │ │ ├── string-not-empty-or-false.md │ │ │ ├── string-not-empty.md │ │ │ ├── string-or-eof.md │ │ │ ├── string-or-false.md │ │ │ ├── string-output-port.md │ │ │ ├── string-port.md │ │ │ ├── string.md │ │ │ ├── symbol.md │ │ │ ├── textual-input-port-closed.md │ │ │ ├── textual-input-port-eof.md │ │ │ ├── textual-input-port-open.md │ │ │ ├── textual-input-port.md │ │ │ ├── textual-output-port-closed.md │ │ │ ├── textual-output-port-open.md │ │ │ ├── textual-output-port.md │ │ │ ├── textual-port-closed.md │ │ │ ├── textual-port-open.md │ │ │ ├── textual-port.md │ │ │ ├── timestamp-jiffy.md │ │ │ ├── timestamp-seconds.md │ │ │ ├── true.md │ │ │ ├── undefined.md │ │ │ ├── value-or-eof.md │ │ │ ├── value-or-false.md │ │ │ ├── value.md │ │ │ ├── vector-empty.md │ │ │ ├── vector-not-empty.md │ │ │ ├── vector.md │ │ │ └── void.md │ └── vonuvoli │ │ ├── _index.md │ │ ├── categories │ │ ├── _index.md │ │ ├── vs_3a_arithmetic.md │ │ ├── vs_3a_associations.md │ │ ├── vs_3a_booleans.md │ │ ├── vs_3a_bytes.md │ │ ├── vs_3a_characters.md │ │ ├── vs_3a_comparisons.md │ │ ├── vs_3a_compiler.md │ │ ├── vs_3a_contexts.md │ │ ├── vs_3a_continuations.md │ │ ├── vs_3a_control.md │ │ ├── vs_3a_conversions.md │ │ ├── vs_3a_equivalence.md │ │ ├── vs_3a_errors.md │ │ ├── vs_3a_evaluator.md │ │ ├── vs_3a_file-system.md │ │ ├── vs_3a_functions.md │ │ ├── vs_3a_globals.md │ │ ├── vs_3a_lambda.md │ │ ├── vs_3a_lists.md │ │ ├── vs_3a_loops.md │ │ ├── vs_3a_modules.md │ │ ├── vs_3a_pairs.md │ │ ├── vs_3a_parameters.md │ │ ├── vs_3a_ports.md │ │ ├── vs_3a_ports_3a_input.md │ │ ├── vs_3a_ports_3a_open.md │ │ ├── vs_3a_ports_3a_output.md │ │ ├── vs_3a_ports_3a_values.md │ │ ├── vs_3a_promises.md │ │ ├── vs_3a_quotation.md │ │ ├── vs_3a_r7rs.md │ │ ├── vs_3a_records.md │ │ ├── vs_3a_strings.md │ │ ├── vs_3a_symbols.md │ │ ├── vs_3a_syntaxes.md │ │ ├── vs_3a_system.md │ │ ├── vs_3a_types.md │ │ ├── vs_3a_unimplemented.md │ │ ├── vs_3a_unsupported.md │ │ ├── vs_3a_values.md │ │ └── vs_3a_vectors.md │ │ ├── definitions │ │ ├── ZZZZ__2a.md │ │ ├── ZZZZ__2b.md │ │ ├── ZZZZ__2d.md │ │ ├── ZZZZ__2e_2e_2e.md │ │ ├── ZZZZ__2f.md │ │ ├── ZZZZ__3c.md │ │ ├── ZZZZ__3c_3d.md │ │ ├── ZZZZ__3d.md │ │ ├── ZZZZ__3d_3e.md │ │ ├── ZZZZ__3e.md │ │ ├── ZZZZ__3e_3d.md │ │ ├── ZZZZ__5f.md │ │ ├── _index.md │ │ ├── abort.md │ │ ├── abs.md │ │ ├── acos.md │ │ ├── and.md │ │ ├── and_2a.md │ │ ├── angle.md │ │ ├── any-list_3f.md │ │ ├── any-or-empty-list_3f.md │ │ ├── append.md │ │ ├── apply.md │ │ ├── asin.md │ │ ├── assoc.md │ │ ├── assq.md │ │ ├── assv.md │ │ ├── atan.md │ │ ├── base32-decode-append_21.md │ │ ├── base32-decode-fill_21.md │ │ ├── base32-decode.md │ │ ├── base32-encode-append_21.md │ │ ├── base32-encode-fill_21.md │ │ ├── base32-encode.md │ │ ├── base32-hex-decode-append_21.md │ │ ├── base32-hex-decode-fill_21.md │ │ ├── base32-hex-decode.md │ │ ├── base32-hex-encode-append_21.md │ │ ├── base32-hex-encode-fill_21.md │ │ ├── base32-hex-encode.md │ │ ├── base32-hex-nopad-decode-append_21.md │ │ ├── base32-hex-nopad-decode-fill_21.md │ │ ├── base32-hex-nopad-decode.md │ │ ├── base32-hex-nopad-encode-append_21.md │ │ ├── base32-hex-nopad-encode-fill_21.md │ │ ├── base32-hex-nopad-encode.md │ │ ├── base32-nopad-decode-append_21.md │ │ ├── base32-nopad-decode-fill_21.md │ │ ├── base32-nopad-decode.md │ │ ├── base32-nopad-encode-append_21.md │ │ ├── base32-nopad-encode-fill_21.md │ │ ├── base32-nopad-encode.md │ │ ├── base64-decode-append_21.md │ │ ├── base64-decode-fill_21.md │ │ ├── base64-decode.md │ │ ├── base64-encode-append_21.md │ │ ├── base64-encode-fill_21.md │ │ ├── base64-encode.md │ │ ├── base64-mime-decode-append_21.md │ │ ├── base64-mime-decode-fill_21.md │ │ ├── base64-mime-decode.md │ │ ├── base64-mime-encode-append_21.md │ │ ├── base64-mime-encode-fill_21.md │ │ ├── base64-mime-encode.md │ │ ├── base64-nopad-decode-append_21.md │ │ ├── base64-nopad-decode-fill_21.md │ │ ├── base64-nopad-decode.md │ │ ├── base64-nopad-encode-append_21.md │ │ ├── base64-nopad-encode-fill_21.md │ │ ├── base64-nopad-encode.md │ │ ├── base64-url-decode-append_21.md │ │ ├── base64-url-decode-fill_21.md │ │ ├── base64-url-decode.md │ │ ├── base64-url-encode-append_21.md │ │ ├── base64-url-encode-fill_21.md │ │ ├── base64-url-encode.md │ │ ├── base64-url-nopad-decode-append_21.md │ │ ├── base64-url-nopad-decode-fill_21.md │ │ ├── base64-url-nopad-decode.md │ │ ├── base64-url-nopad-encode-append_21.md │ │ ├── base64-url-nopad-encode-fill_21.md │ │ ├── base64-url-nopad-encode.md │ │ ├── begin.md │ │ ├── binary-input-port_3f.md │ │ ├── binary-output-port_3f.md │ │ ├── binary-port_3f.md │ │ ├── binding_3f.md │ │ ├── bitwise-and.md │ │ ├── bitwise-nand.md │ │ ├── bitwise-nor.md │ │ ├── bitwise-not.md │ │ ├── bitwise-nxor.md │ │ ├── bitwise-or.md │ │ ├── bitwise-rotate-left.md │ │ ├── bitwise-rotate-right.md │ │ ├── bitwise-shift-left.md │ │ ├── bitwise-shift-right.md │ │ ├── bitwise-xor.md │ │ ├── boolean_3c_3d_3f.md │ │ ├── boolean_3c_3f.md │ │ ├── boolean_3d_3f.md │ │ ├── boolean_3e_3d_3f.md │ │ ├── boolean_3e_3f.md │ │ ├── boolean_3f.md │ │ ├── bytevector-_3e_immutable.md │ │ ├── bytevector-_3e_list.md │ │ ├── bytevector-_3e_mutable.md │ │ ├── bytevector-_3e_vector.md │ │ ├── bytevector-append.md │ │ ├── bytevector-copy.md │ │ ├── bytevector-copy_21.md │ │ ├── bytevector-empty_3f.md │ │ ├── bytevector-immutable-empty_3f.md │ │ ├── bytevector-immutable_3f.md │ │ ├── bytevector-length.md │ │ ├── bytevector-mutable-empty_3f.md │ │ ├── bytevector-mutable_3f.md │ │ ├── bytevector-regex-match-all-_3e_vector.md │ │ ├── bytevector-regex-match-all.md │ │ ├── bytevector-regex-match-captures-_3e_assoc.md │ │ ├── bytevector-regex-match-captures-_3e_vector.md │ │ ├── bytevector-regex-match-captures-all-_3e_assoc.md │ │ ├── bytevector-regex-match-captures-all-_3e_vector.md │ │ ├── bytevector-regex-match-captures-all.md │ │ ├── bytevector-regex-match-captures-position-_3e_assoc.md │ │ ├── bytevector-regex-match-captures-position-_3e_vector.md │ │ ├── bytevector-regex-match-captures-position-all-_3e_assoc.md │ │ ├── bytevector-regex-match-captures-position-all-_3e_vector.md │ │ ├── bytevector-regex-match-captures-position-all.md │ │ ├── bytevector-regex-match-captures-position.md │ │ ├── bytevector-regex-match-captures.md │ │ ├── bytevector-regex-match-position-all-_3e_vector.md │ │ ├── bytevector-regex-match-position-all.md │ │ ├── bytevector-regex-match-position.md │ │ ├── bytevector-regex-match.md │ │ ├── bytevector-regex-match_3f.md │ │ ├── bytevector-regex_3f.md │ │ ├── bytevector-reverse.md │ │ ├── bytevector-reverse_21.md │ │ ├── bytevector-u8-fill_21.md │ │ ├── bytevector-u8-for-each.md │ │ ├── bytevector-u8-map.md │ │ ├── bytevector-u8-ref.md │ │ ├── bytevector-u8-set_21.md │ │ ├── bytevector.md │ │ ├── bytevector_3c_3d_3f.md │ │ ├── bytevector_3c_3f.md │ │ ├── bytevector_3d_3f.md │ │ ├── bytevector_3e_3d_3f.md │ │ ├── bytevector_3e_3f.md │ │ ├── bytevector_3f.md │ │ ├── caaaar.md │ │ ├── caaadr.md │ │ ├── caaar.md │ │ ├── caadar.md │ │ ├── caaddr.md │ │ ├── caadr.md │ │ ├── caar.md │ │ ├── cache-close.md │ │ ├── cache-exclude-all.md │ │ ├── cache-exclude-bytevector.md │ │ ├── cache-exclude.md │ │ ├── cache-include-bytevector.md │ │ ├── cache-include.md │ │ ├── cache-open.md │ │ ├── cache-prune-all.md │ │ ├── cache-resolve-bytevector.md │ │ ├── cache-resolve.md │ │ ├── cache-select-bytevector.md │ │ ├── cache-select.md │ │ ├── cache_3f.md │ │ ├── cadaar.md │ │ ├── cadadr.md │ │ ├── cadar.md │ │ ├── caddar.md │ │ ├── cadddr.md │ │ ├── caddr.md │ │ ├── call-with-binary-input-file.md │ │ ├── call-with-binary-output-file.md │ │ ├── call-with-current-continuation.md │ │ ├── call-with-input-file.md │ │ ├── call-with-list.md │ │ ├── call-with-list_2a.md │ │ ├── call-with-output-file.md │ │ ├── call-with-port.md │ │ ├── call-with-values.md │ │ ├── call-with-values_2a.md │ │ ├── call-with-vector.md │ │ ├── call-with-vector_2a.md │ │ ├── call.md │ │ ├── car.md │ │ ├── case-lambda.md │ │ ├── case.md │ │ ├── cdaaar.md │ │ ├── cdaadr.md │ │ ├── cdaar.md │ │ ├── cdadar.md │ │ ├── cdaddr.md │ │ ├── cdadr.md │ │ ├── cdar.md │ │ ├── cddaar.md │ │ ├── cddadr.md │ │ ├── cddar.md │ │ ├── cdddar.md │ │ ├── cddddr.md │ │ ├── cdddr.md │ │ ├── cdr.md │ │ ├── ceiling.md │ │ ├── char-_3e_integer.md │ │ ├── char-alphabetic-or-numeric_3f.md │ │ ├── char-alphabetic_3f.md │ │ ├── char-ascii-alphabetic-or-numeric_3f.md │ │ ├── char-ascii-alphabetic_3f.md │ │ ├── char-ascii-control_3f.md │ │ ├── char-ascii-graphic_3f.md │ │ ├── char-ascii-lower-case_3f.md │ │ ├── char-ascii-numeric-16_3f.md │ │ ├── char-ascii-numeric-8_3f.md │ │ ├── char-ascii-numeric_3f.md │ │ ├── char-ascii-punctuation_3f.md │ │ ├── char-ascii-upper-case_3f.md │ │ ├── char-ascii-whitespace_3f.md │ │ ├── char-ascii_3f.md │ │ ├── char-ci_3c_3d_3f.md │ │ ├── char-ci_3c_3f.md │ │ ├── char-ci_3d_3f.md │ │ ├── char-ci_3e_3d_3f.md │ │ ├── char-ci_3e_3f.md │ │ ├── char-control_3f.md │ │ ├── char-downcase.md │ │ ├── char-foldcase.md │ │ ├── char-lower-case_3f.md │ │ ├── char-numeric_3f.md │ │ ├── char-ready_3f.md │ │ ├── char-upcase.md │ │ ├── char-upper-case_3f.md │ │ ├── char-whitespace_3f.md │ │ ├── char_3c_3d_3f.md │ │ ├── char_3c_3f.md │ │ ├── char_3d_3f.md │ │ ├── char_3e_3d_3f.md │ │ ├── char_3e_3f.md │ │ ├── char_3f.md │ │ ├── circular-list_3f.md │ │ ├── circular-or-empty-list_3f.md │ │ ├── close-input-port.md │ │ ├── close-output-port.md │ │ ├── close-port.md │ │ ├── command-line-_3e_vector.md │ │ ├── command-line-length.md │ │ ├── command-line-ref.md │ │ ├── command-line.md │ │ ├── complex_3f.md │ │ ├── compose.md │ │ ├── compose_2a.md │ │ ├── cond-expand.md │ │ ├── cond.md │ │ ├── cons.md │ │ ├── constant-fn.md │ │ ├── constant-fn_2a.md │ │ ├── context_3f.md │ │ ├── cos.md │ │ ├── crypto-blake2b-128.md │ │ ├── crypto-blake2b-192.md │ │ ├── crypto-blake2b-224.md │ │ ├── crypto-blake2b-256.md │ │ ├── crypto-blake2b-320.md │ │ ├── crypto-blake2b-384.md │ │ ├── crypto-blake2b-448.md │ │ ├── crypto-blake2b-512.md │ │ ├── crypto-blake2b-64.md │ │ ├── crypto-blake2s-128.md │ │ ├── crypto-blake2s-192.md │ │ ├── crypto-blake2s-224.md │ │ ├── crypto-blake2s-256.md │ │ ├── crypto-blake2s-64.md │ │ ├── crypto-bytevector-append_21.md │ │ ├── crypto-bytevector-fill_21.md │ │ ├── crypto-bytevector.md │ │ ├── crypto-md5.md │ │ ├── crypto-sha1.md │ │ ├── crypto-sha2-256-224.md │ │ ├── crypto-sha2-256.md │ │ ├── crypto-sha2-512-224.md │ │ ├── crypto-sha2-512-256.md │ │ ├── crypto-sha2-512-384.md │ │ ├── crypto-sha2-512.md │ │ ├── crypto-sha3-224.md │ │ ├── crypto-sha3-256.md │ │ ├── crypto-sha3-384.md │ │ ├── crypto-sha3-512.md │ │ ├── current-error-port.md │ │ ├── current-input-port.md │ │ ├── current-jiffy.md │ │ ├── current-output-port.md │ │ ├── current-second.md │ │ ├── curry-last.md │ │ ├── curry.md │ │ ├── define-record-type.md │ │ ├── define-syntax.md │ │ ├── define-values.md │ │ ├── define.md │ │ ├── delay-force.md │ │ ├── delay.md │ │ ├── denominator.md │ │ ├── deserialize-bytevector.md │ │ ├── digit-value.md │ │ ├── display-line.md │ │ ├── display.md │ │ ├── do-cond.md │ │ ├── do.md │ │ ├── dotted-list_3f.md │ │ ├── dotted-or-empty-list_3f.md │ │ ├── dynamic-wind.md │ │ ├── eighth-pair.md │ │ ├── eighth-tail.md │ │ ├── eighth.md │ │ ├── else.md │ │ ├── emergency-exit.md │ │ ├── empty-list_3f.md │ │ ├── environment.md │ │ ├── eof-object.md │ │ ├── eof-object_3f.md │ │ ├── equivalent-by-identity_3f.md │ │ ├── equivalent-by-value-coerced-recursive_3f.md │ │ ├── equivalent-by-value-coerced_3f.md │ │ ├── equivalent-by-value-strict-recursive_3f.md │ │ ├── equivalent-by-value-strict_3f.md │ │ ├── error-object-irritants-_3e_values.md │ │ ├── error-object-irritants-_3e_vector.md │ │ ├── error-object-irritants.md │ │ ├── error-object-message.md │ │ ├── error-object_3f.md │ │ ├── error.md │ │ ├── eval.md │ │ ├── even_3f.md │ │ ├── exact-integer-sqrt.md │ │ ├── exact-integer_3f.md │ │ ├── exact.md │ │ ├── exact_3f.md │ │ ├── exit.md │ │ ├── exp.md │ │ ├── expt.md │ │ ├── false-or-equivalent_3f.md │ │ ├── false_3f.md │ │ ├── features.md │ │ ├── fifth-pair.md │ │ ├── fifth-tail.md │ │ ├── fifth.md │ │ ├── file-error_3f.md │ │ ├── file-exists_3f.md │ │ ├── find.md │ │ ├── finite_3f.md │ │ ├── first-pair.md │ │ ├── first-tail.md │ │ ├── first.md │ │ ├── floor-quotient.md │ │ ├── floor-remainder.md │ │ ├── floor.md │ │ ├── floor_2f.md │ │ ├── flush-output-port.md │ │ ├── for-each.md │ │ ├── force.md │ │ ├── fourth-pair.md │ │ ├── fourth-tail.md │ │ ├── fourth.md │ │ ├── fractional.md │ │ ├── fs-file-delete.md │ │ ├── fs-metadata_3f.md │ │ ├── gcd.md │ │ ├── generic_3c_3d_3f.md │ │ ├── generic_3c_3f.md │ │ ├── generic_3d_3f.md │ │ ├── generic_3e_3d_3f.md │ │ ├── generic_3e_3f.md │ │ ├── get-environment-fingerprint.md │ │ ├── get-environment-variable.md │ │ ├── get-environment-variables-_3e_vector.md │ │ ├── get-environment-variables.md │ │ ├── get-output-bytevector.md │ │ ├── get-output-string.md │ │ ├── guard.md │ │ ├── guard_2a.md │ │ ├── hash-blake2b-seeded.md │ │ ├── hash-blake2b-unseeded.md │ │ ├── hash-blake2s-seeded.md │ │ ├── hash-blake2s-unseeded.md │ │ ├── hash-sea-seeded.md │ │ ├── hash-sea-unseeded.md │ │ ├── hash-sip-seeded.md │ │ ├── hash-sip-unseeded.md │ │ ├── hash.md │ │ ├── hex-decode-append_21.md │ │ ├── hex-decode-fill_21.md │ │ ├── hex-decode.md │ │ ├── hex-lower-encode-append_21.md │ │ ├── hex-lower-encode-fill_21.md │ │ ├── hex-lower-encode.md │ │ ├── hex-upper-encode-append_21.md │ │ ├── hex-upper-encode-fill_21.md │ │ ├── hex-upper-encode.md │ │ ├── identity.md │ │ ├── if.md │ │ ├── imag-part.md │ │ ├── import.md │ │ ├── include-ci.md │ │ ├── include.md │ │ ├── inexact.md │ │ ├── inexact_3f.md │ │ ├── infinite_3f.md │ │ ├── input-port-open_3f.md │ │ ├── input-port_3f.md │ │ ├── integer-_3e_char.md │ │ ├── integer_3f.md │ │ ├── interaction-environment.md │ │ ├── internal_3f.md │ │ ├── jiffies-per-second.md │ │ ├── keyword-_3e_string.md │ │ ├── keyword-_3e_symbol.md │ │ ├── keyword-ci_3c_3d_3f.md │ │ ├── keyword-ci_3c_3f.md │ │ ├── keyword-ci_3d_3f.md │ │ ├── keyword-ci_3e_3d_3f.md │ │ ├── keyword-ci_3e_3f.md │ │ ├── keyword-downcase.md │ │ ├── keyword-foldcase.md │ │ ├── keyword-upcase.md │ │ ├── keyword_3c_3d_3f.md │ │ ├── keyword_3c_3f.md │ │ ├── keyword_3d_3f.md │ │ ├── keyword_3e_3d_3f.md │ │ ├── keyword_3e_3f.md │ │ ├── keyword_3f.md │ │ ├── lambda.md │ │ ├── lcm.md │ │ ├── length.md │ │ ├── let-syntax.md │ │ ├── let-values.md │ │ ├── let.md │ │ ├── let_2a.md │ │ ├── let_2a_-values.md │ │ ├── letrec-syntax.md │ │ ├── letrec.md │ │ ├── letrec_2a.md │ │ ├── list-_3e_bytevector.md │ │ ├── list-_3e_immutable.md │ │ ├── list-_3e_mutable.md │ │ ├── list-_3e_record.md │ │ ├── list-_3e_string.md │ │ ├── list-_3e_vector.md │ │ ├── list-copy.md │ │ ├── list-copy_21.md │ │ ├── list-fill_21.md │ │ ├── list-ref-car.md │ │ ├── list-ref-cdr.md │ │ ├── list-ref-cons.md │ │ ├── list-reverse_21.md │ │ ├── list-set-car_21.md │ │ ├── list-set-cdr_21.md │ │ ├── list.md │ │ ├── list_2a.md │ │ ├── load.md │ │ ├── locals.md │ │ ├── log.md │ │ ├── loop.md │ │ ├── magnitude.md │ │ ├── make-bytevector-regex.md │ │ ├── make-bytevector.md │ │ ├── make-error.md │ │ ├── make-list.md │ │ ├── make-pair.md │ │ ├── make-parameter.md │ │ ├── make-polar.md │ │ ├── make-promise.md │ │ ├── make-record-type.md │ │ ├── make-record.md │ │ ├── make-record_2a.md │ │ ├── make-rectangular.md │ │ ├── make-string-regex.md │ │ ├── make-string.md │ │ ├── make-vector.md │ │ ├── map-in-order.md │ │ ├── map.md │ │ ├── max.md │ │ ├── member.md │ │ ├── memq.md │ │ ├── memv.md │ │ ├── min.md │ │ ├── nan_3f.md │ │ ├── nand_2a.md │ │ ├── negative.md │ │ ├── negative_3f.md │ │ ├── newline.md │ │ ├── ninth-pair.md │ │ ├── ninth-tail.md │ │ ├── ninth.md │ │ ├── nor_2a.md │ │ ├── not-_3c_3d_3f.md │ │ ├── not-_3c_3f.md │ │ ├── not-_3d_3f.md │ │ ├── not-_3e_3d_3f.md │ │ ├── not-_3e_3f.md │ │ ├── not-any-list_3f.md │ │ ├── not-any-or-empty-list_3f.md │ │ ├── not-binary-input-port_3f.md │ │ ├── not-binary-output-port_3f.md │ │ ├── not-binary-port_3f.md │ │ ├── not-binding_3f.md │ │ ├── not-boolean_3c_3d_3f.md │ │ ├── not-boolean_3c_3f.md │ │ ├── not-boolean_3d_3f.md │ │ ├── not-boolean_3e_3d_3f.md │ │ ├── not-boolean_3e_3f.md │ │ ├── not-boolean_3f.md │ │ ├── not-bytevector-empty_3f.md │ │ ├── not-bytevector-immutable-empty_3f.md │ │ ├── not-bytevector-immutable_3f.md │ │ ├── not-bytevector-mutable-empty_3f.md │ │ ├── not-bytevector-mutable_3f.md │ │ ├── not-bytevector-regex_3f.md │ │ ├── not-bytevector_3c_3d_3f.md │ │ ├── not-bytevector_3c_3f.md │ │ ├── not-bytevector_3d_3f.md │ │ ├── not-bytevector_3e_3d_3f.md │ │ ├── not-bytevector_3e_3f.md │ │ ├── not-bytevector_3f.md │ │ ├── not-cache_3f.md │ │ ├── not-char-alphabetic-or-numeric_3f.md │ │ ├── not-char-alphabetic_3f.md │ │ ├── not-char-ascii-alphabetic-or-numeric_3f.md │ │ ├── not-char-ascii-alphabetic_3f.md │ │ ├── not-char-ascii-control_3f.md │ │ ├── not-char-ascii-graphic_3f.md │ │ ├── not-char-ascii-lower-case_3f.md │ │ ├── not-char-ascii-numeric-16_3f.md │ │ ├── not-char-ascii-numeric-8_3f.md │ │ ├── not-char-ascii-numeric_3f.md │ │ ├── not-char-ascii-punctuation_3f.md │ │ ├── not-char-ascii-upper-case_3f.md │ │ ├── not-char-ascii-whitespace_3f.md │ │ ├── not-char-ascii_3f.md │ │ ├── not-char-ci_3c_3d_3f.md │ │ ├── not-char-ci_3c_3f.md │ │ ├── not-char-ci_3d_3f.md │ │ ├── not-char-ci_3e_3d_3f.md │ │ ├── not-char-ci_3e_3f.md │ │ ├── not-char-control_3f.md │ │ ├── not-char-lower-case_3f.md │ │ ├── not-char-numeric_3f.md │ │ ├── not-char-upper-case_3f.md │ │ ├── not-char-whitespace_3f.md │ │ ├── not-char_3c_3d_3f.md │ │ ├── not-char_3c_3f.md │ │ ├── not-char_3d_3f.md │ │ ├── not-char_3e_3d_3f.md │ │ ├── not-char_3e_3f.md │ │ ├── not-char_3f.md │ │ ├── not-circular-list_3f.md │ │ ├── not-circular-or-empty-list_3f.md │ │ ├── not-complex_3f.md │ │ ├── not-context_3f.md │ │ ├── not-dotted-list-or-emtpy_3f.md │ │ ├── not-dotted-list_3f.md │ │ ├── not-empty-list_3f.md │ │ ├── not-eof-object_3f.md │ │ ├── not-equivalent-by-identity_3f.md │ │ ├── not-equivalent-by-value-coerced-recursive_3f.md │ │ ├── not-equivalent-by-value-coerced_3f.md │ │ ├── not-equivalent-by-value-strict-recursive_3f.md │ │ ├── not-equivalent-by-value-strict_3f.md │ │ ├── not-error-object_3f.md │ │ ├── not-even_3f.md │ │ ├── not-exact-integer_3f.md │ │ ├── not-exact_3f.md │ │ ├── not-false-or-equivalent_3f.md │ │ ├── not-false_3f.md │ │ ├── not-file-error_3f.md │ │ ├── not-finite_3f.md │ │ ├── not-fn.md │ │ ├── not-fs-metadata_3f.md │ │ ├── not-generic_3c_3d_3f.md │ │ ├── not-generic_3c_3f.md │ │ ├── not-generic_3d_3f.md │ │ ├── not-generic_3e_3d_3f.md │ │ ├── not-generic_3e_3f.md │ │ ├── not-inexact_3f.md │ │ ├── not-infinite_3f.md │ │ ├── not-input-port_3f.md │ │ ├── not-integer_3f.md │ │ ├── not-internal_3f.md │ │ ├── not-keyword-ci_3c_3d_3f.md │ │ ├── not-keyword-ci_3c_3f.md │ │ ├── not-keyword-ci_3d_3f.md │ │ ├── not-keyword-ci_3e_3d_3f.md │ │ ├── not-keyword-ci_3e_3f.md │ │ ├── not-keyword_3c_3d_3f.md │ │ ├── not-keyword_3c_3f.md │ │ ├── not-keyword_3d_3f.md │ │ ├── not-keyword_3e_3d_3f.md │ │ ├── not-keyword_3e_3f.md │ │ ├── not-keyword_3f.md │ │ ├── not-nan_3f.md │ │ ├── not-negative_3f.md │ │ ├── not-null_3f.md │ │ ├── not-number_3f.md │ │ ├── not-odd_3f.md │ │ ├── not-opaque_3f.md │ │ ├── not-output-port_3f.md │ │ ├── not-pair-immutable_3f.md │ │ ├── not-pair-mutable_3f.md │ │ ├── not-pair_3c_3d_3f.md │ │ ├── not-pair_3c_3f.md │ │ ├── not-pair_3d_3f.md │ │ ├── not-pair_3e_3d_3f.md │ │ ├── not-pair_3e_3f.md │ │ ├── not-pair_3f.md │ │ ├── not-parameter_3f.md │ │ ├── not-parameters_3f.md │ │ ├── not-path-absolute_3f.md │ │ ├── not-path-relative_3f.md │ │ ├── not-path_3c_3d_3f.md │ │ ├── not-path_3c_3f.md │ │ ├── not-path_3d_3f.md │ │ ├── not-path_3e_3d_3f.md │ │ ├── not-path_3e_3f.md │ │ ├── not-path_3f.md │ │ ├── not-port-error_3f.md │ │ ├── not-port_3f.md │ │ ├── not-positive_3f.md │ │ ├── not-procedure_3f.md │ │ ├── not-process_3f.md │ │ ├── not-promise_3f.md │ │ ├── not-proper-list_3f.md │ │ ├── not-proper-or-empty-list_3f.md │ │ ├── not-rational_3f.md │ │ ├── not-read-error_3f.md │ │ ├── not-real_3f.md │ │ ├── not-record-immutable_3f.md │ │ ├── not-record-mutable_3f.md │ │ ├── not-record-type_3f.md │ │ ├── not-record_3c_3d_3f.md │ │ ├── not-record_3c_3f.md │ │ ├── not-record_3d_3f.md │ │ ├── not-record_3e_3d_3f.md │ │ ├── not-record_3e_3f.md │ │ ├── not-record_3f.md │ │ ├── not-resource_3f.md │ │ ├── not-string-ci_3c_3d_3f.md │ │ ├── not-string-ci_3c_3f.md │ │ ├── not-string-ci_3d_3f.md │ │ ├── not-string-ci_3e_3d_3f.md │ │ ├── not-string-ci_3e_3f.md │ │ ├── not-string-empty_3f.md │ │ ├── not-string-immutable-empty_3f.md │ │ ├── not-string-immutable_3f.md │ │ ├── not-string-mutable-empty_3f.md │ │ ├── not-string-mutable_3f.md │ │ ├── not-string-regex_3f.md │ │ ├── not-string_3c_3d_3f.md │ │ ├── not-string_3c_3f.md │ │ ├── not-string_3d_3f.md │ │ ├── not-string_3e_3d_3f.md │ │ ├── not-string_3e_3f.md │ │ ├── not-string_3f.md │ │ ├── not-symbol-ci_3c_3d_3f.md │ │ ├── not-symbol-ci_3c_3f.md │ │ ├── not-symbol-ci_3d_3f.md │ │ ├── not-symbol-ci_3e_3d_3f.md │ │ ├── not-symbol-ci_3e_3f.md │ │ ├── not-symbol_3c_3d_3f.md │ │ ├── not-symbol_3c_3f.md │ │ ├── not-symbol_3d_3f.md │ │ ├── not-symbol_3e_3d_3f.md │ │ ├── not-symbol_3e_3f.md │ │ ├── not-symbol_3f.md │ │ ├── not-syntax-error_3f.md │ │ ├── not-syntax_3f.md │ │ ├── not-textual-input-port_3f.md │ │ ├── not-textual-output-port_3f.md │ │ ├── not-textual-port_3f.md │ │ ├── not-true-or-equivalent_3f.md │ │ ├── not-true_3f.md │ │ ├── not-undefined_3f.md │ │ ├── not-unique_3c_3d_3f.md │ │ ├── not-unique_3c_3f.md │ │ ├── not-unique_3d_3f.md │ │ ├── not-unique_3e_3d_3f.md │ │ ├── not-unique_3e_3f.md │ │ ├── not-unique_3f.md │ │ ├── not-values-empty_3f.md │ │ ├── not-values_3c_3d_3f.md │ │ ├── not-values_3c_3f.md │ │ ├── not-values_3d_3f.md │ │ ├── not-values_3e_3d_3f.md │ │ ├── not-values_3e_3f.md │ │ ├── not-values_3f.md │ │ ├── not-vector-empty_3f.md │ │ ├── not-vector-immutable-empty_3f.md │ │ ├── not-vector-immutable_3f.md │ │ ├── not-vector-mutable-empty_3f.md │ │ ├── not-vector-mutable_3f.md │ │ ├── not-vector_3c_3d_3f.md │ │ ├── not-vector_3c_3f.md │ │ ├── not-vector_3d_3f.md │ │ ├── not-vector_3e_3d_3f.md │ │ ├── not-vector_3e_3f.md │ │ ├── not-vector_3f.md │ │ ├── not-void_3f.md │ │ ├── not-write-error_3f.md │ │ ├── not-zero_3f.md │ │ ├── not.md │ │ ├── not_2a.md │ │ ├── null-environment.md │ │ ├── null_3f.md │ │ ├── number-_3e_string.md │ │ ├── number_3f.md │ │ ├── numerator.md │ │ ├── nxor_2a.md │ │ ├── odd_3f.md │ │ ├── opaque_3f.md │ │ ├── open-binary-input-file.md │ │ ├── open-binary-output-file.md │ │ ├── open-binary-temporary.md │ │ ├── open-input-bytevector.md │ │ ├── open-input-file.md │ │ ├── open-input-string.md │ │ ├── open-output-bytevector.md │ │ ├── open-output-file.md │ │ ├── open-output-string.md │ │ ├── open-temporary.md │ │ ├── or.md │ │ ├── or_2a.md │ │ ├── output-port-open_3f.md │ │ ├── output-port_3f.md │ │ ├── pair-_3e_immutable.md │ │ ├── pair-_3e_mutable.md │ │ ├── pair-immutable_3f.md │ │ ├── pair-mutable_3f.md │ │ ├── pair_3c_3d_3f.md │ │ ├── pair_3c_3f.md │ │ ├── pair_3d_3f.md │ │ ├── pair_3e_3d_3f.md │ │ ├── pair_3e_3f.md │ │ ├── pair_3f.md │ │ ├── parameter-ref.md │ │ ├── parameter-set_21.md │ │ ├── parameter_3f.md │ │ ├── parameterize.md │ │ ├── parameters_3f.md │ │ ├── path-absolute_3f.md │ │ ├── path-relative_3f.md │ │ ├── path_3c_3d_3f.md │ │ ├── path_3c_3f.md │ │ ├── path_3d_3f.md │ │ ├── path_3e_3d_3f.md │ │ ├── path_3e_3f.md │ │ ├── path_3f.md │ │ ├── pause.md │ │ ├── peek-char.md │ │ ├── peek-u8.md │ │ ├── port-descriptor-clone.md │ │ ├── port-descriptor-flag-ref.md │ │ ├── port-descriptor-flag-set_21.md │ │ ├── port-descriptor-path.md │ │ ├── port-descriptor-ref.md │ │ ├── port-descriptor.md │ │ ├── port-error_3f.md │ │ ├── port-temporary-path.md │ │ ├── port-temporary-release.md │ │ ├── port_3f.md │ │ ├── positive_3f.md │ │ ├── procedure_3f.md │ │ ├── process-exec.md │ │ ├── process-exec_2a.md │ │ ├── process-run-try.md │ │ ├── process-run.md │ │ ├── process-spawn.md │ │ ├── process-spawn_2a.md │ │ ├── process-spawn_3a_directory.md │ │ ├── process-spawn_3a_env-empty.md │ │ ├── process-spawn_3a_env-exclude.md │ │ ├── process-spawn_3a_env-include.md │ │ ├── process-spawn_3a_stderr.md │ │ ├── process-spawn_3a_stdin.md │ │ ├── process-spawn_3a_stdout.md │ │ ├── process-stderr.md │ │ ├── process-stdin.md │ │ ├── process-stdout.md │ │ ├── process-wait-poll.md │ │ ├── process-wait-try.md │ │ ├── process-wait.md │ │ ├── process_3f.md │ │ ├── promise_3f.md │ │ ├── proper-list_3f.md │ │ ├── proper-or-empty-list_3f.md │ │ ├── quasiquote.md │ │ ├── quote.md │ │ ├── raise-continuable.md │ │ ├── raise.md │ │ ├── random-boolean-weighted.md │ │ ├── random-boolean.md │ │ ├── random-bytevector-append_21.md │ │ ├── random-bytevector-fill_21.md │ │ ├── random-bytevector-permutation.md │ │ ├── random-bytevector-shuffle_21.md │ │ ├── random-bytevector.md │ │ ├── random-char-ascii-alphabetic-or-numeric.md │ │ ├── random-char-ascii-alphabetic.md │ │ ├── random-char-ascii-control.md │ │ ├── random-char-ascii-graphic.md │ │ ├── random-char-ascii-lower-case.md │ │ ├── random-char-ascii-numeric-16.md │ │ ├── random-char-ascii-numeric-8.md │ │ ├── random-char-ascii-numeric.md │ │ ├── random-char-ascii-punctuation.md │ │ ├── random-char-ascii-upper-case.md │ │ ├── random-char-ascii-whitespace.md │ │ ├── random-char-ascii.md │ │ ├── random-char.md │ │ ├── random-char_2a.md │ │ ├── random-f64.md │ │ ├── random-f64_2a.md │ │ ├── random-i16.md │ │ ├── random-i32.md │ │ ├── random-i64.md │ │ ├── random-i64_2a.md │ │ ├── random-i8.md │ │ ├── random-string-ascii-alphabetic-append_21.md │ │ ├── random-string-ascii-alphabetic-or-numeric-append_21.md │ │ ├── random-string-ascii-alphabetic-or-numeric-permutation.md │ │ ├── random-string-ascii-alphabetic-or-numeric.md │ │ ├── random-string-ascii-alphabetic-permutation.md │ │ ├── random-string-ascii-alphabetic.md │ │ ├── random-string-ascii-append_21.md │ │ ├── random-string-ascii-control-append_21.md │ │ ├── random-string-ascii-control-permutation.md │ │ ├── random-string-ascii-control.md │ │ ├── random-string-ascii-graphic-append_21.md │ │ ├── random-string-ascii-graphic-permutation.md │ │ ├── random-string-ascii-graphic.md │ │ ├── random-string-ascii-lower-case-append_21.md │ │ ├── random-string-ascii-lower-case-permutation.md │ │ ├── random-string-ascii-lower-case.md │ │ ├── random-string-ascii-numeric-16-append_21.md │ │ ├── random-string-ascii-numeric-16-permutation.md │ │ ├── random-string-ascii-numeric-16.md │ │ ├── random-string-ascii-numeric-8-append_21.md │ │ ├── random-string-ascii-numeric-8-permutation.md │ │ ├── random-string-ascii-numeric-8.md │ │ ├── random-string-ascii-numeric-append_21.md │ │ ├── random-string-ascii-numeric-permutation.md │ │ ├── random-string-ascii-numeric.md │ │ ├── random-string-ascii-permutation.md │ │ ├── random-string-ascii-punctuation-append_21.md │ │ ├── random-string-ascii-punctuation-permutation.md │ │ ├── random-string-ascii-punctuation.md │ │ ├── random-string-ascii-upper-case-append_21.md │ │ ├── random-string-ascii-upper-case-permutation.md │ │ ├── random-string-ascii-upper-case.md │ │ ├── random-string-ascii-whitespace-append_21.md │ │ ├── random-string-ascii-whitespace-permutation.md │ │ ├── random-string-ascii-whitespace.md │ │ ├── random-string-ascii.md │ │ ├── random-u1.md │ │ ├── random-u15.md │ │ ├── random-u16.md │ │ ├── random-u2.md │ │ ├── random-u3.md │ │ ├── random-u31.md │ │ ├── random-u32.md │ │ ├── random-u4.md │ │ ├── random-u5.md │ │ ├── random-u6.md │ │ ├── random-u63.md │ │ ├── random-u7.md │ │ ├── random-u8.md │ │ ├── rational_3f.md │ │ ├── rationalize.md │ │ ├── read-bytevector-append_21.md │ │ ├── read-bytevector-chunk-fold.md │ │ ├── read-bytevector-chunk.md │ │ ├── read-bytevector-fold.md │ │ ├── read-bytevector-line-fold.md │ │ ├── read-bytevector-line.md │ │ ├── read-bytevector-zero-fold.md │ │ ├── read-bytevector-zero.md │ │ ├── read-bytevector.md │ │ ├── read-bytevector_21.md │ │ ├── read-char.md │ │ ├── read-error_3f.md │ │ ├── read-fold.md │ │ ├── read-string-append_21.md │ │ ├── read-string-chunk-fold.md │ │ ├── read-string-chunk.md │ │ ├── read-string-fold.md │ │ ├── read-string-line-fold.md │ │ ├── read-string-line.md │ │ ├── read-string-zero-fold.md │ │ ├── read-string-zero.md │ │ ├── read-string.md │ │ ├── read-u8.md │ │ ├── read.md │ │ ├── real-part.md │ │ ├── real_3f.md │ │ ├── record-_3e_immutable.md │ │ ├── record-_3e_list.md │ │ ├── record-_3e_mutable.md │ │ ├── record-_3e_values.md │ │ ├── record-_3e_vector.md │ │ ├── record-immutable_3f.md │ │ ├── record-mutable_3f.md │ │ ├── record-of_3f.md │ │ ├── record-ref.md │ │ ├── record-set_21.md │ │ ├── record-type-accessor.md │ │ ├── record-type-constructor.md │ │ ├── record-type-constructor_2a.md │ │ ├── record-type-identifier.md │ │ ├── record-type-mutator.md │ │ ├── record-type-predicate.md │ │ ├── record-type-size.md │ │ ├── record-type.md │ │ ├── record-type_3f.md │ │ ├── record_3c_3d_3f.md │ │ ├── record_3c_3f.md │ │ ├── record_3d_3f.md │ │ ├── record_3e_3d_3f.md │ │ ├── record_3e_3f.md │ │ ├── record_3f.md │ │ ├── redefine-values.md │ │ ├── redefine.md │ │ ├── resource_3f.md │ │ ├── reverse.md │ │ ├── round.md │ │ ├── scheme-report-environment.md │ │ ├── second-pair.md │ │ ├── second-tail.md │ │ ├── second.md │ │ ├── serialize-bytevector.md │ │ ├── set-car_21.md │ │ ├── set-cdr_21.md │ │ ├── set_21.md │ │ ├── set_21_-values.md │ │ ├── seventh-pair.md │ │ ├── seventh-tail.md │ │ ├── seventh.md │ │ ├── signum.md │ │ ├── sin.md │ │ ├── sixth-pair.md │ │ ├── sixth-tail.md │ │ ├── sixth.md │ │ ├── sqrt.md │ │ ├── square.md │ │ ├── string-_3e_immutable.md │ │ ├── string-_3e_keyword.md │ │ ├── string-_3e_list.md │ │ ├── string-_3e_mutable.md │ │ ├── string-_3e_number.md │ │ ├── string-_3e_symbol.md │ │ ├── string-_3e_utf8.md │ │ ├── string-_3e_vector.md │ │ ├── string-append.md │ │ ├── string-ci_3c_3d_3f.md │ │ ├── string-ci_3c_3f.md │ │ ├── string-ci_3d_3f.md │ │ ├── string-ci_3e_3d_3f.md │ │ ├── string-ci_3e_3f.md │ │ ├── string-copy.md │ │ ├── string-copy_21.md │ │ ├── string-downcase.md │ │ ├── string-empty_3f.md │ │ ├── string-fill_21.md │ │ ├── string-foldcase.md │ │ ├── string-for-each.md │ │ ├── string-immutable-empty_3f.md │ │ ├── string-immutable_3f.md │ │ ├── string-length.md │ │ ├── string-map.md │ │ ├── string-mutable-empty_3f.md │ │ ├── string-mutable_3f.md │ │ ├── string-ref.md │ │ ├── string-regex-match-all-_3e_vector.md │ │ ├── string-regex-match-all.md │ │ ├── string-regex-match-captures-_3e_assoc.md │ │ ├── string-regex-match-captures-_3e_vector.md │ │ ├── string-regex-match-captures-all-_3e_assoc.md │ │ ├── string-regex-match-captures-all-_3e_vector.md │ │ ├── string-regex-match-captures-all.md │ │ ├── string-regex-match-captures-position-_3e_assoc.md │ │ ├── string-regex-match-captures-position-_3e_vector.md │ │ ├── string-regex-match-captures-position-all-_3e_assoc.md │ │ ├── string-regex-match-captures-position-all-_3e_vector.md │ │ ├── string-regex-match-captures-position-all.md │ │ ├── string-regex-match-captures-position.md │ │ ├── string-regex-match-captures.md │ │ ├── string-regex-match-position-all-_3e_vector.md │ │ ├── string-regex-match-position-all.md │ │ ├── string-regex-match-position.md │ │ ├── string-regex-match.md │ │ ├── string-regex-match_3f.md │ │ ├── string-regex_3f.md │ │ ├── string-reverse.md │ │ ├── string-reverse_21.md │ │ ├── string-set_21.md │ │ ├── string-upcase.md │ │ ├── string.md │ │ ├── string_3c_3d_3f.md │ │ ├── string_3c_3f.md │ │ ├── string_3d_3f.md │ │ ├── string_3e_3d_3f.md │ │ ├── string_3e_3f.md │ │ ├── string_3f.md │ │ ├── symbol-_3e_keyword.md │ │ ├── symbol-_3e_string.md │ │ ├── symbol-ci_3c_3d_3f.md │ │ ├── symbol-ci_3c_3f.md │ │ ├── symbol-ci_3d_3f.md │ │ ├── symbol-ci_3e_3d_3f.md │ │ ├── symbol-ci_3e_3f.md │ │ ├── symbol-downcase.md │ │ ├── symbol-foldcase.md │ │ ├── symbol-upcase.md │ │ ├── symbol_3c_3d_3f.md │ │ ├── symbol_3c_3f.md │ │ ├── symbol_3d_3f.md │ │ ├── symbol_3e_3d_3f.md │ │ ├── symbol_3e_3f.md │ │ ├── symbol_3f.md │ │ ├── syntax-error.md │ │ ├── syntax-error_3f.md │ │ ├── syntax-rules.md │ │ ├── syntax_3f.md │ │ ├── tan.md │ │ ├── tenth-pair.md │ │ ├── tenth-tail.md │ │ ├── tenth.md │ │ ├── textual-input-port_3f.md │ │ ├── textual-output-port_3f.md │ │ ├── textual-port_3f.md │ │ ├── third-pair.md │ │ ├── third-tail.md │ │ ├── third.md │ │ ├── trace-critical.md │ │ ├── trace-debugging.md │ │ ├── trace-error.md │ │ ├── trace-information.md │ │ ├── trace-internal.md │ │ ├── trace-notice.md │ │ ├── trace-warning.md │ │ ├── true-or-equivalent_3f.md │ │ ├── true_3f.md │ │ ├── truncate-quotient.md │ │ ├── truncate-remainder.md │ │ ├── truncate.md │ │ ├── truncate_2f.md │ │ ├── u8-ready_3f.md │ │ ├── undefined_3f.md │ │ ├── unique_3c_3d_3f.md │ │ ├── unique_3c_3f.md │ │ ├── unique_3d_3f.md │ │ ├── unique_3e_3d_3f.md │ │ ├── unique_3e_3f.md │ │ ├── unique_3f.md │ │ ├── unless.md │ │ ├── unquote-splicing.md │ │ ├── unquote.md │ │ ├── until-cond.md │ │ ├── until.md │ │ ├── utf8-_3e_string.md │ │ ├── values-_3e_record.md │ │ ├── values-empty_3f.md │ │ ├── values.md │ │ ├── values_3c_3d_3f.md │ │ ├── values_3c_3f.md │ │ ├── values_3d_3f.md │ │ ├── values_3e_3d_3f.md │ │ ├── values_3e_3f.md │ │ ├── values_3f.md │ │ ├── vector-_3e_bytevector.md │ │ ├── vector-_3e_immutable.md │ │ ├── vector-_3e_list.md │ │ ├── vector-_3e_mutable.md │ │ ├── vector-_3e_record.md │ │ ├── vector-_3e_string.md │ │ ├── vector-append.md │ │ ├── vector-append_21.md │ │ ├── vector-clear-at_21.md │ │ ├── vector-clear_21.md │ │ ├── vector-copy.md │ │ ├── vector-copy_21.md │ │ ├── vector-empty_3f.md │ │ ├── vector-fill_21.md │ │ ├── vector-find.md │ │ ├── vector-for-each.md │ │ ├── vector-immutable-empty_3f.md │ │ ├── vector-immutable_3f.md │ │ ├── vector-insert-from_21.md │ │ ├── vector-insert_21.md │ │ ├── vector-length.md │ │ ├── vector-map.md │ │ ├── vector-mutable-empty_3f.md │ │ ├── vector-mutable_3f.md │ │ ├── vector-pop_21.md │ │ ├── vector-push-from_21.md │ │ ├── vector-push_21.md │ │ ├── vector-ref.md │ │ ├── vector-remove_21.md │ │ ├── vector-resize-at_21.md │ │ ├── vector-resize_21.md │ │ ├── vector-reverse.md │ │ ├── vector-reverse_21.md │ │ ├── vector-set_21.md │ │ ├── vector-swap_21.md │ │ ├── vector.md │ │ ├── vector_3c_3d_3f.md │ │ ├── vector_3c_3f.md │ │ ├── vector_3d_3f.md │ │ ├── vector_3e_3d_3f.md │ │ ├── vector_3e_3f.md │ │ ├── vector_3f.md │ │ ├── void_3f.md │ │ ├── when.md │ │ ├── while-cond.md │ │ ├── while.md │ │ ├── with-binary-input-file.md │ │ ├── with-binary-output-file.md │ │ ├── with-exception-handler.md │ │ ├── with-input-from-file.md │ │ ├── with-output-to-file.md │ │ ├── write-bytevector-line.md │ │ ├── write-bytevector-zero.md │ │ ├── write-bytevector.md │ │ ├── write-char.md │ │ ├── write-error_3f.md │ │ ├── write-line.md │ │ ├── write-shared.md │ │ ├── write-simple.md │ │ ├── write-string-line.md │ │ ├── write-string-zero.md │ │ ├── write-string.md │ │ ├── write-u8.md │ │ ├── write.md │ │ ├── xcons.md │ │ ├── xor_2a.md │ │ └── zero_3f.md │ │ └── exports │ │ ├── _index.md │ │ ├── vs_3a_arithmetic.md │ │ ├── vs_3a_arrays.md │ │ ├── vs_3a_base.md │ │ ├── vs_3a_booleans.md │ │ ├── vs_3a_bytes.md │ │ ├── vs_3a_cache.md │ │ ├── vs_3a_characters.md │ │ ├── vs_3a_comparisons-negated.md │ │ ├── vs_3a_comparisons.md │ │ ├── vs_3a_comparisons_2a.md │ │ ├── vs_3a_contexts.md │ │ ├── vs_3a_core-procedures.md │ │ ├── vs_3a_core-syntaxes.md │ │ ├── vs_3a_core.md │ │ ├── vs_3a_dynamic.md │ │ ├── vs_3a_errors.md │ │ ├── vs_3a_evaluator.md │ │ ├── vs_3a_functional.md │ │ ├── vs_3a_hashes.md │ │ ├── vs_3a_io-bytes.md │ │ ├── vs_3a_io-descriptors.md │ │ ├── vs_3a_io-open.md │ │ ├── vs_3a_io-strings.md │ │ ├── vs_3a_io-temporary.md │ │ ├── vs_3a_io-values.md │ │ ├── vs_3a_io.md │ │ ├── vs_3a_keywords.md │ │ ├── vs_3a_lists.md │ │ ├── vs_3a_os.md │ │ ├── vs_3a_pairs.md │ │ ├── vs_3a_parameters.md │ │ ├── vs_3a_paths.md │ │ ├── vs_3a_processes.md │ │ ├── vs_3a_promises.md │ │ ├── vs_3a_records.md │ │ ├── vs_3a_regex-bytes.md │ │ ├── vs_3a_regex-strings.md │ │ ├── vs_3a_regex.md │ │ ├── vs_3a_serialization.md │ │ ├── vs_3a_strings.md │ │ ├── vs_3a_symbols.md │ │ ├── vs_3a_time.md │ │ ├── vs_3a_types-negated.md │ │ ├── vs_3a_types.md │ │ ├── vs_3a_types_2a.md │ │ ├── vs_3a_uniques.md │ │ └── vs_3a_values.md ├── libraries-ss │ ├── empty.ss │ ├── r7rs.ss │ └── vonuvoli.ss ├── licensing │ ├── fdl-1.3.txt │ ├── gpl-3.0.txt │ ├── lgpl-3.0.txt │ └── notice.txt ├── readme.rst ├── reports │ ├── libraries--definitions.md │ ├── libraries--symbols.md │ ├── primitives--variants.md │ └── r7rs--coverage.md ├── sbom │ ├── cyclonedx.json │ ├── sbom.html │ ├── sbom.json │ ├── sbom.md │ └── sbom.txt └── tools │ ├── common--help.txt │ └── interpreter--help.txt ├── examples ├── _outputs │ ├── benchmark--controls--chibi.out │ ├── benchmark--controls--gauche.out │ ├── benchmark--controls--python.out │ ├── benchmark--controls--vonuvoli-compile.out │ ├── benchmark--controls--vonuvoli-release.out │ ├── benchmark--loop--chibi.out │ ├── benchmark--loop--gauche.out │ ├── benchmark--loop--python.out │ ├── benchmark--loop--vonuvoli-compile.out │ ├── benchmark--loop--vonuvoli-release.out │ ├── benchmark--make-cons--chibi.out │ ├── benchmark--make-cons--gauche.out │ ├── benchmark--make-cons--python.out │ ├── benchmark--make-cons--vonuvoli-compile.out │ ├── benchmark--make-cons--vonuvoli-release.out │ ├── benchmark--make-vector--chibi.out │ ├── benchmark--make-vector--gauche.out │ ├── benchmark--make-vector--python.out │ ├── benchmark--make-vector--vonuvoli-compile.out │ ├── benchmark--make-vector--vonuvoli-release.out │ ├── examples--backtrace--vonuvoli-compile.out │ ├── examples--disk-usage--vonuvoli-compile.out │ ├── examples--display-1--vonuvoli-compile.out │ ├── examples--process-1--vonuvoli-compile.out │ ├── examples--process-2--vonuvoli-compile.out │ ├── examples--random-1--vonuvoli-compile.out │ ├── examples--stdio--r7rs--vonuvoli-compile.out │ ├── examples--stdio--vonuvoli-compile.out │ ├── examples--stdio-1--vonuvoli-compile.out │ ├── examples--stdio-2--vonuvoli-compile.out │ ├── examples--transcript--vonuvoli-compile.out │ ├── optimizer--conditionals--vonuvoli-compile.out │ ├── optimizer--controls--vonuvoli-compile.out │ └── optimizer--loops--vonuvoli-compile.out ├── benchmark--controls.py ├── benchmark--controls.ss ├── benchmark--loop.py ├── benchmark--loop.ss ├── benchmark--make-cons.py ├── benchmark--make-cons.ss ├── benchmark--make-vector.py ├── benchmark--make-vector.ss ├── benchmark--r7rs-ack.ss--disabled ├── benchmark--r7rs-array1.ss--disabled ├── benchmark--r7rs-browse.ss--disabled ├── examples--backtrace.ss ├── examples--disk-usage--chibi.ss ├── examples--disk-usage.ss ├── examples--display-1.ss ├── examples--process-1.ss ├── examples--process-2.ss ├── examples--random-1.ss ├── examples--stdio--r7rs.ss ├── examples--stdio.ss ├── examples--transcript.ss ├── optimizer--conditionals.ss ├── optimizer--controls.ss └── optimizer--loops.ss ├── notice.txt ├── readme.rst ├── scripts ├── _z-run ├── cargo-build.z-run ├── cargo-checks.z-run ├── cargo-run.z-run ├── cargo-test.z-run ├── cargo.z-run ├── documentation.z-run ├── environment.z-run ├── reports.z-run ├── sources.z-run ├── tests.z-run ├── workbench.z-run └── z-run.old ├── sources ├── bin_common.rs ├── bin_interpreter.rs ├── builtins.rs ├── builtins_arrays.rs ├── builtins_bytes.rs ├── builtins_cache.rs ├── builtins_comparisons.rs ├── builtins_crypto.rs ├── builtins_encoding.rs ├── builtins_filesystem.rs ├── builtins_functions.rs ├── builtins_hashes.rs ├── builtins_lists.rs ├── builtins_ports.rs ├── builtins_processes.rs ├── builtins_random.rs ├── builtins_records.rs ├── builtins_regularex.rs ├── builtins_runtime.rs ├── builtins_serde.rs ├── builtins_strings.rs ├── builtins_types.rs ├── compiler.rs ├── compiler_optimizer.rs ├── constants.rs ├── contexts.rs ├── conversions.rs ├── counters.rs ├── display.rs ├── documentation.rs ├── errors.rs ├── evaluator.rs ├── evaluator_trait.rs ├── expressions.rs ├── extended_procedures.rs ├── extended_syntaxes.rs ├── globals.rs ├── hashes.rs ├── lambdas.rs ├── lib.rs ├── libraries.rs ├── libraries_builtins.rs ├── libraries_r7rs.rs ├── macros.in ├── macros_primitives.in ├── native_procedures.rs ├── native_syntaxes.rs ├── ordering.rs ├── parameters.rs ├── parser.rs ├── parser_peg.peg ├── parser_peg.rs ├── paths.rs ├── ports.rs ├── ports_memory.rs ├── ports_native.rs ├── prelude.rs ├── primitives.rs ├── primitives_arithmetic.rs ├── primitives_arrays.rs ├── primitives_bitwise.rs ├── primitives_boolean.rs ├── primitives_bytes.rs ├── primitives_comparisons.rs ├── primitives_filesystem.rs ├── primitives_functions.rs ├── primitives_lists.rs ├── primitives_ports.rs ├── primitives_procedures.rs ├── primitives_records.rs ├── primitives_runtime.rs ├── primitives_strings.rs ├── primitives_syntaxes.rs ├── primitives_types.rs ├── processes.rs ├── regularex.rs ├── runtime.rs ├── runtime_backtrace.rs ├── runtime_configurations.rs ├── runtime_iterators.rs ├── runtime_unicode.rs ├── tests.rs ├── tools.rs ├── tools_bencher.rs ├── tools_common.rs ├── tools_compiler.rs ├── tools_documentation.rs ├── tools_interpreter.rs ├── tools_reports.rs ├── tools_tester.rs ├── transcript.rs ├── values.rs ├── values_arrays.rs ├── values_booleans.rs ├── values_bytes.rs ├── values_characters.rs ├── values_keywords.rs ├── values_numbers.rs ├── values_opaque.rs ├── values_pairs.rs ├── values_records.rs ├── values_strings.rs ├── values_symbols.rs ├── values_tests.rs ├── values_unique.rs ├── values_value.rs └── values_values.rs └── tests ├── _outputs ├── builtins-lists--benchmark__list_build_1__immutable.out ├── builtins-lists--benchmark__list_build_1__mutable.out ├── builtins-lists--benchmark__list_build_2__immutable.out ├── builtins-lists--benchmark__list_build_2__mutable.out ├── builtins-lists--benchmark__list_build_3__immutable.out ├── builtins-lists--benchmark__list_build_3__mutable.out ├── builtins-lists--benchmark__list_build_4__immutable.out ├── builtins-lists--benchmark__list_build_4__mutable.out ├── builtins-lists--benchmark__list_clone__0__immutable.out ├── builtins-lists--benchmark__list_clone__0__mutable.out ├── builtins-lists--benchmark__list_clone__10000__immutable.out ├── builtins-lists--benchmark__list_clone__10000__mutable.out ├── builtins-lists--benchmark__list_clone__1000__immutable.out ├── builtins-lists--benchmark__list_clone__1000__mutable.out ├── builtins-lists--benchmark__list_clone__100__immutable.out ├── builtins-lists--benchmark__list_clone__100__mutable.out ├── builtins-lists--benchmark__list_clone__10__immutable.out ├── builtins-lists--benchmark__list_clone__10__mutable.out ├── builtins-lists--benchmark__list_clone__1__immutable.out ├── builtins-lists--benchmark__list_clone__1__mutable.out ├── builtins-lists--benchmark__list_empty.out ├── builtins-lists--benchmark__list_length__0.out ├── builtins-lists--benchmark__list_length__10000__immutable.out ├── builtins-lists--benchmark__list_length__10000__mutable.out ├── builtins-lists--benchmark__list_length__1000__immutable.out ├── builtins-lists--benchmark__list_length__1000__mutable.out ├── builtins-lists--benchmark__list_length__100__immutable.out ├── builtins-lists--benchmark__list_length__100__mutable.out ├── builtins-lists--benchmark__list_length__10__immutable.out ├── builtins-lists--benchmark__list_length__10__mutable.out ├── builtins-lists--benchmark__list_length__1__immutable.out ├── builtins-lists--benchmark__list_length__1__mutable.out ├── builtins-lists--benchmark__list_make__0__immutable.out ├── builtins-lists--benchmark__list_make__0__mutable.out ├── builtins-lists--benchmark__list_make__10000__immutable.out ├── builtins-lists--benchmark__list_make__10000__mutable.out ├── builtins-lists--benchmark__list_make__1000__immutable.out ├── builtins-lists--benchmark__list_make__1000__mutable.out ├── builtins-lists--benchmark__list_make__100__immutable.out ├── builtins-lists--benchmark__list_make__100__mutable.out ├── builtins-lists--benchmark__list_make__10__immutable.out ├── builtins-lists--benchmark__list_make__10__mutable.out ├── builtins-lists--benchmark__list_make__1__immutable.out ├── builtins-lists--benchmark__list_make__1__mutable.out ├── builtins-lists--benchmark__list_reverse__0__immutable.out ├── builtins-lists--benchmark__list_reverse__0__mutable.out ├── builtins-lists--benchmark__list_reverse__10000__immutable.out ├── builtins-lists--benchmark__list_reverse__10000__mutable.out ├── builtins-lists--benchmark__list_reverse__1000__immutable.out ├── builtins-lists--benchmark__list_reverse__1000__mutable.out ├── builtins-lists--benchmark__list_reverse__100__immutable.out ├── builtins-lists--benchmark__list_reverse__100__mutable.out ├── builtins-lists--benchmark__list_reverse__10__immutable.out ├── builtins-lists--benchmark__list_reverse__10__mutable.out ├── builtins-lists--benchmark__list_reverse__1__immutable.out ├── builtins-lists--benchmark__list_reverse__1__mutable.out ├── low-level-rust--benchmark__box_vs_rc__box_as_ref.out ├── low-level-rust--benchmark__box_vs_rc__box_clone.out ├── low-level-rust--benchmark__box_vs_rc__rc_as_ref.out ├── low-level-rust--benchmark__box_vs_rc__rc_clone.out ├── low-level-rust--benchmark__internals__box_rc__clone.out ├── low-level-rust--benchmark__internals__rc_only__clone.out ├── low-level-rust--benchmark__internals__rc_rc__clone.out ├── scheme--benchmark__arithmetic.out ├── scheme--benchmark__arrays.out ├── scheme--benchmark__booleans.out ├── scheme--benchmark__bytes.out ├── scheme--benchmark__cache_bytes_default.out ├── scheme--benchmark__cache_bytes_namespace.out ├── scheme--benchmark__cache_objects_busting.out ├── scheme--benchmark__cache_objects_default.out ├── scheme--benchmark__cache_objects_namespace.out ├── scheme--benchmark__cache_objects_partitions.out ├── scheme--benchmark__comparisons_equivalent_by_identity.out ├── scheme--benchmark__comparisons_equivalent_by_identity_negated.out ├── scheme--benchmark__comparisons_equivalent_by_value_coerced_recursive.out ├── scheme--benchmark__comparisons_equivalent_by_value_coerced_recursive_negated.out ├── scheme--benchmark__comparisons_equivalent_by_value_coerced_shallow.out ├── scheme--benchmark__comparisons_equivalent_by_value_coerced_shallow_negated.out ├── scheme--benchmark__comparisons_equivalent_by_value_strict_recursive.out ├── scheme--benchmark__comparisons_equivalent_by_value_strict_recursive_negated.out ├── scheme--benchmark__comparisons_equivalent_by_value_strict_shallow.out ├── scheme--benchmark__comparisons_equivalent_by_value_strict_shallow_negated.out ├── scheme--benchmark__comparisons_equivalent_objects.out ├── scheme--benchmark__comparisons_equivalent_objects_negated.out ├── scheme--benchmark__comparisons_ordering_numbers.out ├── scheme--benchmark__comparisons_ordering_numbers_negated.out ├── scheme--benchmark__comparisons_ordering_objects.out ├── scheme--benchmark__comparisons_ordering_objects_negated.out ├── scheme--benchmark__contexts.out ├── scheme--benchmark__control.out ├── scheme--benchmark__crypto.out ├── scheme--benchmark__encoding.out ├── scheme--benchmark__errors.out ├── scheme--benchmark__filesystem.out ├── scheme--benchmark__functions.out ├── scheme--benchmark__functions_arrays.out ├── scheme--benchmark__functions_bytes.out ├── scheme--benchmark__functions_higher.out ├── scheme--benchmark__functions_lists.out ├── scheme--benchmark__functions_strings.out ├── scheme--benchmark__hashes_blake2b.out ├── scheme--benchmark__hashes_blake2s.out ├── scheme--benchmark__hashes_default.out ├── scheme--benchmark__hashes_seahash.out ├── scheme--benchmark__hashes_siphash.out ├── scheme--benchmark__issues.out ├── scheme--benchmark__lambdas.out ├── scheme--benchmark__lists.out ├── scheme--benchmark__loops.out ├── scheme--benchmark__pairs.out ├── scheme--benchmark__parameters.out ├── scheme--benchmark__paths.out ├── scheme--benchmark__ports.out ├── scheme--benchmark__ports_memory.out ├── scheme--benchmark__ports_native.out ├── scheme--benchmark__ports_parameters.out ├── scheme--benchmark__processes.out ├── scheme--benchmark__quotation.out ├── scheme--benchmark__random.out ├── scheme--benchmark__records_procedures.out ├── scheme--benchmark__records_syntaxes.out ├── scheme--benchmark__regex_bytes.out ├── scheme--benchmark__regex_strings.out ├── scheme--benchmark__runtime.out ├── scheme--benchmark__scratchpad.out ├── scheme--benchmark__serde.out ├── scheme--benchmark__srfi_1.out ├── scheme--benchmark__strings.out ├── scheme--benchmark__types.out ├── scheme--benchmark__types_negated.out └── scheme--benchmark__values.out ├── builtins-lists.rs ├── low-level-assertions.rs ├── low-level-parser.rs ├── low-level-rust.rs ├── low-level-sizes.rs ├── prelude.in ├── scheme.rs └── scheme ├── arithmetic.sst ├── arrays-conversions.sst ├── arrays-mutations-1.sst ├── arrays-mutations-2.sst ├── arrays-mutations-3.sst ├── arrays.sst ├── booleans.sst ├── bytes.sst ├── cache-bytes-default.sst ├── cache-bytes-namespace.sst ├── cache-objects-busting.sst ├── cache-objects-default.sst ├── cache-objects-namespace.sst ├── cache-objects-partitions.sst ├── comparisons-equivalent-by-identity-negated.sst ├── comparisons-equivalent-by-identity.sst ├── comparisons-equivalent-by-value-coerced-recursive-negated.sst ├── comparisons-equivalent-by-value-coerced-recursive.sst ├── comparisons-equivalent-by-value-coerced-shallow-negated.sst ├── comparisons-equivalent-by-value-coerced-shallow.sst ├── comparisons-equivalent-by-value-strict-recursive-negated.sst ├── comparisons-equivalent-by-value-strict-recursive.sst ├── comparisons-equivalent-by-value-strict-shallow-negated.sst ├── comparisons-equivalent-by-value-strict-shallow.sst ├── comparisons-equivalent-objects-negated.sst ├── comparisons-equivalent-objects.sst ├── comparisons-ordering-numbers-negated.sst ├── comparisons-ordering-numbers.sst ├── comparisons-ordering-objects-negated.sst ├── comparisons-ordering-objects.sst ├── contexts.sst ├── control.sst ├── crypto.sst ├── encoding.sst ├── errors.sst ├── filesystem.sst ├── functions-arrays.sst ├── functions-bytes.sst ├── functions-higher.sst ├── functions-lists.sst ├── functions-strings.sst ├── functions.sst ├── hashes-blake2b.sst ├── hashes-blake2s.sst ├── hashes-blake3.sst ├── hashes-default.sst ├── hashes-highwayhash.sst ├── hashes-seahash.sst ├── hashes-siphash.sst ├── hashes-xxh3.sst ├── issues.sst ├── lambdas.sst ├── lists-associations.sst ├── lists-miscellaneous.sst ├── lists-mutations-1.sst ├── lists-mutations-2.sst ├── lists-searching.sst ├── lists.sst ├── loops.sst ├── pairs.sst ├── parameters.sst ├── paths.sst ├── ports-descriptors.sst ├── ports-memory.sst ├── ports-native.sst ├── ports-outputs.sst ├── ports-parameters.sst ├── ports-temporary.sst ├── ports.sst ├── processes.sst ├── quotation.sst ├── random.sst ├── records-fields.sst ├── records-procedures.sst ├── records-syntaxes.sst ├── regex-bytes.sst ├── regex-strings.sst ├── runtime.sst ├── scratchpad.sst ├── serde.sst ├── srfi-1.sst ├── strings.sst ├── types-negated.sst ├── types.sst └── values.sst /.github/funding.yml: -------------------------------------------------------------------------------- 1 | github: cipriancraciun 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .* 3 | !.gitignore 4 | !.github 5 | 6 | /target 7 | 8 | /documentation/libraries-dumps/ 9 | 10 | *~ 11 | *# 12 | *.bak 13 | 14 | *.log 15 | *.lock 16 | *.tmp 17 | 18 | -------------------------------------------------------------------------------- /documentation/assets/github-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volution/vonuvoli-scheme/468df001f966934668f0355393c98f3ad2ddee53/documentation/assets/github-banner.png -------------------------------------------------------------------------------- /documentation/assets/libraries.js: -------------------------------------------------------------------------------- 1 | 2 | "use strict"; 3 | 4 | 5 | (function () { 6 | 7 | function _apply () { 8 | $("html:root > body pre") .dblclick (_selectAll); 9 | $("html:root > body code") .dblclick (_selectAll); 10 | } 11 | 12 | function _selectAll (_event) { 13 | var _selection = window.getSelection (); 14 | _selection.removeAllRanges (); 15 | var _range = document.createRange (); 16 | _range.selectNodeContents (this); 17 | _selection.addRange (_range); 18 | } 19 | 20 | $(window) .on ("load", _apply); 21 | 22 | }) (); 23 | 24 | -------------------------------------------------------------------------------- /documentation/external/r7rs-small-spec/ebook.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volution/vonuvoli-scheme/468df001f966934668f0355393c98f3ad2ddee53/documentation/external/r7rs-small-spec/ebook.pdf -------------------------------------------------------------------------------- /documentation/external/r7rs-small-spec/html/readme.txt: -------------------------------------------------------------------------------- 1 | 2 | https://www.tug.org/applications/tex4ht/mn-commands.html 3 | https://github.com/michal-h21/helpers4ht/wiki/tex4ht-tutorial 4 | 5 | ## current variant 6 | htlatex r7rs.tex "xhtml,mathml" " -cunihtf -utf8" "-cvalidate" 7 | htlatex r7rs-ebook.tex "xhtml,mathml" " -cunihtf -utf8" "-cvalidate" 8 | 9 | htlatex r7rs.tex "xhtml,mathml" " -cunihtf" "-cvalidate" 10 | htlatex r7rs-ebook.tex "xhtml,mathml" " -cunihtf" "-cvalidate" 11 | 12 | ## other variants 13 | htlatex r7rs.tex "xhtml,uni-html4" " -cunihtf" 14 | htlatex r7rs.tex "xhtml,mozilla" " -cmozhtf" "-cvalidate" 15 | 16 | -------------------------------------------------------------------------------- /documentation/external/r7rs-small-spec/original.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volution/vonuvoli-scheme/468df001f966934668f0355393c98f3ad2ddee53/documentation/external/r7rs-small-spec/original.pdf -------------------------------------------------------------------------------- /documentation/external/r7rs-small-spec/recompiled.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volution/vonuvoli-scheme/468df001f966934668f0355393c98f3ad2ddee53/documentation/external/r7rs-small-spec/recompiled.pdf -------------------------------------------------------------------------------- /documentation/external/r7rs-small-spec/stripped/r7rs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volution/vonuvoli-scheme/468df001f966934668f0355393c98f3ad2ddee53/documentation/external/r7rs-small-spec/stripped/r7rs.pdf -------------------------------------------------------------------------------- /documentation/external/readme.txt: -------------------------------------------------------------------------------- 1 | 2 | This folder MUST be considered as DISJOINT and EXTERNAL from the rest of the repository. 3 | 4 | The files within this folder have not been created (or changed) by me, 5 | they were publicly accessible (as of 2017) on the internet, 6 | they belong to their original writer, 7 | they have specific licenses (most likely included within them), 8 | and I did include them only for CACHING purposes. 9 | 10 | Many of the files (including the R7RS specification) can't be found on the internet (as of 2017). 11 | 12 | -------------------------------------------------------------------------------- /documentation/libraries-md/_libraries.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # Libraries 6 | 7 | 8 | 9 | 10 | #### Contents 11 | 12 | * [`r7rs`](./r7rs/_index.md#library__r7rs) -- Revised-7th Report on the Algorithmic Language Scheme; 13 | * [`vonuvoli`](./vonuvoli/_index.md#library__vonuvoli) -- Vonuvoli-Scheme builtin functionality; 14 | 15 | ---- 16 | 17 | Goto: [libraries](./_libraries.md#toc__libraries). 18 | 19 | ---- 20 | 21 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/abort.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `abort` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/and_2a.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `and*` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base32-decode-append_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base32-decode-append!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base32-decode-fill_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base32-decode-fill!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base32-decode.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base32-decode` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base32-encode-append_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base32-encode-append!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base32-encode-fill_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base32-encode-fill!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base32-encode.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base32-encode` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base32-hex-decode-append_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base32-hex-decode-append!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base32-hex-decode-fill_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base32-hex-decode-fill!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base32-hex-decode.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base32-hex-decode` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base32-hex-encode-append_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base32-hex-encode-append!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base32-hex-encode-fill_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base32-hex-encode-fill!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base32-hex-encode.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base32-hex-encode` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base32-hex-nopad-decode-fill_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base32-hex-nopad-decode-fill!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base32-hex-nopad-decode.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base32-hex-nopad-decode` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base32-hex-nopad-encode-fill_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base32-hex-nopad-encode-fill!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base32-hex-nopad-encode.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base32-hex-nopad-encode` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base32-nopad-decode-append_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base32-nopad-decode-append!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base32-nopad-decode-fill_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base32-nopad-decode-fill!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base32-nopad-decode.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base32-nopad-decode` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base32-nopad-encode-append_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base32-nopad-encode-append!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base32-nopad-encode-fill_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base32-nopad-encode-fill!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base32-nopad-encode.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base32-nopad-encode` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-decode-append_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-decode-append!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-decode-fill_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-decode-fill!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-decode.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-decode` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-encode-append_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-encode-append!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-encode-fill_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-encode-fill!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-encode.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-encode` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-mime-decode-append_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-mime-decode-append!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-mime-decode-fill_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-mime-decode-fill!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-mime-decode.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-mime-decode` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-mime-encode-append_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-mime-encode-append!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-mime-encode-fill_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-mime-encode-fill!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-mime-encode.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-mime-encode` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-nopad-decode-append_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-nopad-decode-append!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-nopad-decode-fill_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-nopad-decode-fill!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-nopad-decode.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-nopad-decode` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-nopad-encode-append_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-nopad-encode-append!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-nopad-encode-fill_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-nopad-encode-fill!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-nopad-encode.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-nopad-encode` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-url-decode-append_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-url-decode-append!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-url-decode-fill_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-url-decode-fill!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-url-decode.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-url-decode` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-url-encode-append_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-url-encode-append!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-url-encode-fill_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-url-encode-fill!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-url-encode.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-url-encode` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-url-nopad-decode-fill_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-url-nopad-decode-fill!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-url-nopad-decode.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-url-nopad-decode` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-url-nopad-encode-fill_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-url-nopad-encode-fill!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/base64-url-nopad-encode.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `base64-url-nopad-encode` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/bitwise-and.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `bitwise-and` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `predicate`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/bitwise-nand.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `bitwise-nand` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `predicate`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/bitwise-not.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `bitwise-not` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `predicate`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/bitwise-nxor.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `bitwise-nxor` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `predicate`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/bitwise-rotate-left.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `bitwise-rotate-left` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `predicate`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/bitwise-rotate-right.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `bitwise-rotate-right` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `predicate`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/bitwise-shift-left.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `bitwise-shift-left` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `predicate`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/bitwise-shift-right.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `bitwise-shift-right` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `predicate`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/bitwise-xor.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `bitwise-xor` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `predicate`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-blake2b-128.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-blake2b-128` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-blake2b-192.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-blake2b-192` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-blake2b-224.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-blake2b-224` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-blake2b-256.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-blake2b-256` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-blake2b-320.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-blake2b-320` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-blake2b-384.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-blake2b-384` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-blake2b-448.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-blake2b-448` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-blake2b-512.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-blake2b-512` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-blake2b-64.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-blake2b-64` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-blake2s-128.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-blake2s-128` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-blake2s-192.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-blake2s-192` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-blake2s-224.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-blake2s-224` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-blake2s-256.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-blake2s-256` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-blake2s-64.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-blake2s-64` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-bytevector-append_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-bytevector-append!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-bytevector-fill_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-bytevector-fill!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-bytevector.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-bytevector` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-md5.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-md5` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-sha1.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-sha1` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-sha2-256.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-sha2-256` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-sha2-512-224.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-sha2-512-224` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-sha2-512-256.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-sha2-512-256` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-sha2-512.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-sha2-512` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-sha3-224.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-sha3-224` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-sha3-256.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-sha3-256` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-sha3-384.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-sha3-384` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/crypto-sha3-512.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `crypto-sha3-512` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/fractional.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `fractional` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/fs-metadata_3f.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `fs-metadata?` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `type-predicate`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/hex-decode-append_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `hex-decode-append!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/hex-decode-fill_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `hex-decode-fill!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/hex-decode.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `hex-decode` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/hex-upper-encode-append_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `hex-upper-encode-append!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/hex-upper-encode-fill_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `hex-upper-encode-fill!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/hex-upper-encode.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `hex-upper-encode` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/make-error.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `make-error` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/nand_2a.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `nand*` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/negative.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `negative` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/not-fs-metadata_3f.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `not-fs-metadata?` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `predicate`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/not_2a.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `not*` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/nxor_2a.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `nxor*` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/parameter-ref.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `parameter-ref` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/parameter-set_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `parameter-set!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/pause.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `pause` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-boolean-weighted.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-boolean-weighted` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-boolean.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-boolean` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-bytevector-append_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-bytevector-append!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-bytevector-fill_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-bytevector-fill!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-bytevector-permutation.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-bytevector-permutation` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-bytevector-shuffle_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-bytevector-shuffle!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-bytevector.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-bytevector` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-char-ascii-alphabetic.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-char-ascii-alphabetic` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-char-ascii-control.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-char-ascii-control` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-char-ascii-graphic.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-char-ascii-graphic` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-char-ascii-lower-case.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-char-ascii-lower-case` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-char-ascii-numeric-16.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-char-ascii-numeric-16` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-char-ascii-numeric-8.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-char-ascii-numeric-8` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-char-ascii-numeric.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-char-ascii-numeric` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-char-ascii-punctuation.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-char-ascii-punctuation` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-char-ascii-upper-case.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-char-ascii-upper-case` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-char-ascii-whitespace.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-char-ascii-whitespace` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-char-ascii.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-char-ascii` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-char.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-char` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-char_2a.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-char*` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-f64.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-f64` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-f64_2a.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-f64*` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-i16.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-i16` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-i32.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-i32` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-i64.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-i64` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-i64_2a.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-i64*` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-i8.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-i8` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-string-ascii-alphabetic.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-string-ascii-alphabetic` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-string-ascii-append_21.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-string-ascii-append!` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-string-ascii-control.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-string-ascii-control` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-string-ascii-graphic.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-string-ascii-graphic` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-string-ascii-numeric-8.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-string-ascii-numeric-8` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-string-ascii-numeric.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-string-ascii-numeric` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-string-ascii.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-string-ascii` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-u1.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-u1` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-u15.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-u15` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-u16.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-u16` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-u2.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-u2` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-u3.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-u3` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-u31.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-u31` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-u32.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-u32` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-u4.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-u4` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-u5.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-u5` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-u6.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-u6` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-u63.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-u63` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-u7.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-u7` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/random-u8.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `random-u8` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/signum.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `signum` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/trace-critical.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `trace-critical` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/trace-debugging.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `trace-debugging` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/trace-error.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `trace-error` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/trace-information.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `trace-information` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/trace-internal.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `trace-internal` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/trace-notice.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `trace-notice` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/trace-warning.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `trace-warning` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-md/vonuvoli/definitions/xor_2a.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # `xor*` -- `vonuvoli` Definition 6 | 7 | 8 | 9 | 10 | #### Kind 11 | 12 | `procedure`; 13 | 14 | ---- 15 | 16 | Goto: [library](../../vonuvoli/_index.md#library__vonuvoli), [categories](../../vonuvoli/categories/_index.md#toc__vonuvoli__categories), [exports](../../vonuvoli/exports/_index.md#toc__vonuvoli__exports), [definitions](../../vonuvoli/definitions/_index.md#toc__vonuvoli__definitions), other [libraries](../../_libraries.md#toc__libraries). 17 | 18 | ---- 19 | 20 | -------------------------------------------------------------------------------- /documentation/libraries-ss/empty.ss: -------------------------------------------------------------------------------- 1 | 2 | (library 3 | 4 | (identifier empty) 5 | 6 | (title "Empty library") 7 | 8 | (description 9 | #<<< 10 | 11 | Some list: 12 | * some item; 13 | * some item; 14 | 15 | > Some quote. 16 | 17 | ``` 18 | some code 19 | ``` 20 | 21 | >>>#) 22 | ) 23 | 24 | -------------------------------------------------------------------------------- /examples/_outputs/benchmark--controls--chibi.out: -------------------------------------------------------------------------------- 1 | 6810 2 | -------------------------------------------------------------------------------- /examples/_outputs/benchmark--controls--gauche.out: -------------------------------------------------------------------------------- 1 | 187 2 | -------------------------------------------------------------------------------- /examples/_outputs/benchmark--controls--python.out: -------------------------------------------------------------------------------- 1 | 25614 2 | -------------------------------------------------------------------------------- /examples/_outputs/benchmark--controls--vonuvoli-release.out: -------------------------------------------------------------------------------- 1 | 1659 2 | -------------------------------------------------------------------------------- /examples/_outputs/benchmark--loop--chibi.out: -------------------------------------------------------------------------------- 1 | 632 2 | -------------------------------------------------------------------------------- /examples/_outputs/benchmark--loop--gauche.out: -------------------------------------------------------------------------------- 1 | 191 2 | -------------------------------------------------------------------------------- /examples/_outputs/benchmark--loop--python.out: -------------------------------------------------------------------------------- 1 | 642 2 | 0 3 | -------------------------------------------------------------------------------- /examples/_outputs/benchmark--loop--vonuvoli-release.out: -------------------------------------------------------------------------------- 1 | 1439 2 | -------------------------------------------------------------------------------- /examples/_outputs/benchmark--make-cons--chibi.out: -------------------------------------------------------------------------------- 1 | 4030 2 | -------------------------------------------------------------------------------- /examples/_outputs/benchmark--make-cons--gauche.out: -------------------------------------------------------------------------------- 1 | 2116 2 | -------------------------------------------------------------------------------- /examples/_outputs/benchmark--make-cons--python.out: -------------------------------------------------------------------------------- 1 | 317 2 | -------------------------------------------------------------------------------- /examples/_outputs/benchmark--make-cons--vonuvoli-release.out: -------------------------------------------------------------------------------- 1 | 4139 2 | -------------------------------------------------------------------------------- /examples/_outputs/benchmark--make-vector--chibi.out: -------------------------------------------------------------------------------- 1 | 6780 2 | -------------------------------------------------------------------------------- /examples/_outputs/benchmark--make-vector--gauche.out: -------------------------------------------------------------------------------- 1 | 187 2 | -------------------------------------------------------------------------------- /examples/_outputs/benchmark--make-vector--python.out: -------------------------------------------------------------------------------- 1 | 66 2 | -------------------------------------------------------------------------------- /examples/_outputs/benchmark--make-vector--vonuvoli-release.out: -------------------------------------------------------------------------------- 1 | 145 2 | -------------------------------------------------------------------------------- /examples/benchmark--controls.ss: -------------------------------------------------------------------------------- 1 | 2 | (do 3 | ( 4 | (timestamp-start (current-jiffy) timestamp-start) 5 | (loop (* 10 1000 1000) (- loop 1)) 6 | ) 7 | ((zero? loop) 8 | (display (round (/ (* (- (current-jiffy) timestamp-start) 1000) (jiffies-per-second)))) 9 | (newline)) 10 | 11 | (and 12 | #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t 13 | #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t 14 | #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t 15 | #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t 16 | #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t #t) 17 | ) 18 | 19 | -------------------------------------------------------------------------------- /examples/benchmark--loop.py: -------------------------------------------------------------------------------- 1 | 2 | import time 3 | 4 | timestamp_start = time.clock () 5 | 6 | loop = 10 * 1000 * 1000 7 | while loop > 0 : 8 | loop = loop - 1 9 | 10 | # (0, 1) 11 | 12 | print int ((time.clock () - timestamp_start) * 1000) 13 | print loop 14 | 15 | -------------------------------------------------------------------------------- /examples/benchmark--loop.ss: -------------------------------------------------------------------------------- 1 | 2 | (do 3 | ( 4 | (timestamp-start (current-jiffy) timestamp-start) 5 | (loop (* 10 1000 1000) (- loop 1)) 6 | ) 7 | ((zero? loop) 8 | (display (round (/ (* (- (current-jiffy) timestamp-start) 1000) (jiffies-per-second)))) 9 | (newline)) 10 | 11 | ; (cons 0 1) 12 | ) 13 | 14 | -------------------------------------------------------------------------------- /examples/benchmark--make-vector.py: -------------------------------------------------------------------------------- 1 | 2 | import time 3 | 4 | timestamp_start = time.clock () 5 | 6 | loop = 100 * 1000 7 | while loop > 0 : 8 | loop = loop - 1 9 | 10 | [0] * 100 11 | 12 | print int ((time.clock () - timestamp_start) * 1000) 13 | 14 | -------------------------------------------------------------------------------- /examples/benchmark--make-vector.ss: -------------------------------------------------------------------------------- 1 | 2 | (do 3 | ( 4 | (timestamp-start (current-jiffy) timestamp-start) 5 | (loop (* 100 1000) (- loop 1)) 6 | ) 7 | ((zero? loop) 8 | (display (round (/ (* (- (current-jiffy) timestamp-start) 1000) (jiffies-per-second)))) 9 | (newline)) 10 | 11 | (make-vector 100 '()) 12 | ) 13 | 14 | -------------------------------------------------------------------------------- /examples/benchmark--r7rs-ack.ss--disabled: -------------------------------------------------------------------------------- 1 | 2 | 3 | (define (ack m n) 4 | (cond ((= m 0) (+ n 1)) 5 | ((= n 0) (ack (- m 1) 1)) 6 | (else (ack (- m 1) (ack m (- n 1)))))) 7 | 8 | 9 | 10 | 11 | (do 12 | ( 13 | (timestamp-start (current-jiffy) timestamp-start) 14 | (loop 1 (- loop 1)) 15 | ) 16 | ((zero? loop) 17 | (display (round (/ (* (- (current-jiffy) timestamp-start) 1000) (jiffies-per-second)))) 18 | (newline)) 19 | 20 | (ack 3 8) 21 | ) 22 | 23 | -------------------------------------------------------------------------------- /examples/examples--backtrace.ss: -------------------------------------------------------------------------------- 1 | 2 | (((('symbol)))) 3 | 4 | -------------------------------------------------------------------------------- /examples/examples--disk-usage--chibi.ss: -------------------------------------------------------------------------------- 1 | 2 | (import (scheme base)) 3 | (import (scheme write)) 4 | (import (chibi filesystem)) 5 | 6 | 7 | (define size 8 | (directory-fold-tree 9 | "/usr/share/doc" 10 | #f #f 11 | (lambda (path accumulator) 12 | (define metadata (file-status path)) 13 | (if (and metadata (file-regular? metadata)) 14 | (begin 15 | ; (write path) (newline) 16 | (+ accumulator (file-size metadata))) 17 | accumulator)) 18 | 0 ; accumulator 19 | )) 20 | 21 | (write size) 22 | (newline) 23 | 24 | -------------------------------------------------------------------------------- /examples/examples--disk-usage.ss: -------------------------------------------------------------------------------- 1 | 2 | (define size 3 | (fs-directory-fold-recursive 4 | "/usr/share/doc" 5 | (lambda (accumulator entry metadata) 6 | (if (fs-metadata-file? metadata) 7 | (begin 8 | ; (write-line (path->string entry)) 9 | (+ accumulator (fs-metadata-file-size metadata))) 10 | accumulator)) 11 | #f ; recurse always 12 | 0 ; accumulator 13 | #t ; join parent and entry 14 | #f ; do not return entry kind 15 | #t ; return entry metadata 16 | #t ; follow symlinks 17 | )) 18 | 19 | (write-line size) 20 | 21 | -------------------------------------------------------------------------------- /examples/examples--display-1.ss: -------------------------------------------------------------------------------- 1 | 2 | (display '(symbol "string" 0 -1 (list element-1 element-2) (cons left right) 2 3)) 3 | (newline) 4 | 5 | (write '(symbol "string" 0 -1 (list element-1 element-2) (cons left right) 2 3)) 6 | (newline) 7 | 8 | -------------------------------------------------------------------------------- /examples/examples--process-1.ss: -------------------------------------------------------------------------------- 1 | 2 | 3 | (define p 4 | (process-spawn* 5 | "base64" 6 | '("--" "/etc/hosts") 7 | '( 8 | (stdout . piped) 9 | ) 10 | )) 11 | 12 | (define p-out (process-stdout p)) 13 | (define s-out (current-output-port)) 14 | 15 | 16 | (do 17 | ((line (read-line p-out) (read-line p-out))) 18 | ((eof-object? line)) 19 | (write-string line s-out) 20 | (newline)) 21 | 22 | 23 | (process-wait p) 24 | 25 | -------------------------------------------------------------------------------- /examples/examples--stdio--r7rs.ss: -------------------------------------------------------------------------------- 1 | 2 | 3 | (define input-port (current-input-port)) 4 | (define output-port (current-output-port)) 5 | 6 | 7 | (do 8 | ((line (read-line input-port) (read-line input-port))) 9 | ((eof-object? line)) 10 | (write-string line output-port) 11 | (newline output-port)) 12 | 13 | -------------------------------------------------------------------------------- /examples/optimizer--controls.ss: -------------------------------------------------------------------------------- 1 | 2 | 3 | (list 4 | 5 | (and) 6 | (and #t) 7 | (and #f) 8 | (and 1 2) 9 | 10 | (and #t #f) 11 | (and #f #t) 12 | 13 | (and 1 2 #f) 14 | (and #f 1 2) 15 | 16 | (and #t (list)) 17 | (and (list) #t) 18 | 19 | (and #f (list)) 20 | (and (list) #f) 21 | 22 | (and 1 2 (list)) 23 | (and (list) 1 2) 24 | ) 25 | 26 | 27 | 28 | 29 | (list 30 | 31 | (or) 32 | (or #t) 33 | (or #f) 34 | (or 1 2) 35 | 36 | (or #t #f) 37 | (or #f #t) 38 | 39 | (or 1 2 #f) 40 | (or #f 1 2) 41 | 42 | (or #t (list)) 43 | (or (list) #t) 44 | 45 | (or #f (list)) 46 | (or (list) #f) 47 | 48 | (or 1 2 (list)) 49 | (or (list) 1 2) 50 | ) 51 | 52 | -------------------------------------------------------------------------------- /examples/optimizer--loops.ss: -------------------------------------------------------------------------------- 1 | 2 | (do () (#t)) 3 | (do () (#f)) 4 | 5 | (do () ()) 6 | 7 | -------------------------------------------------------------------------------- /notice.txt: -------------------------------------------------------------------------------- 1 | ./documentation/licensing/notice.txt -------------------------------------------------------------------------------- /readme.rst: -------------------------------------------------------------------------------- 1 | ./documentation/readme.rst -------------------------------------------------------------------------------- /scripts/_z-run: -------------------------------------------------------------------------------- 1 | #!/dev/null 2 | 3 | 4 | 5 | 6 | ::// * 7 | 8 | ::// debug / ... 9 | ::// release / ... 10 | 11 | ::// environment / ... 12 | ::// workbench / ... 13 | ::// sources / ... 14 | ::// cargo / ... 15 | 16 | ::// tester / debug / ... 17 | ::// tester / release / ... 18 | 19 | 20 | 21 | 22 | &&?? _/.local.z-run 23 | 24 | && _/environment.z-run 25 | && _/workbench.z-run 26 | && _/sources.z-run 27 | && _/documentation.z-run 28 | && _/reports.z-run 29 | 30 | && _/cargo.z-run 31 | && _/cargo-build.z-run 32 | && _/cargo-run.z-run 33 | && _/cargo-test.z-run 34 | && _/cargo-checks.z-run 35 | 36 | && _/tests.z-run 37 | 38 | -------------------------------------------------------------------------------- /sources/bin_common.rs: -------------------------------------------------------------------------------- 1 | 2 | extern crate vonuvoli_scheme; 3 | 4 | 5 | fn main () -> () { 6 | return vonuvoli_scheme::exports::premain (); 7 | } 8 | 9 | -------------------------------------------------------------------------------- /sources/bin_interpreter.rs: -------------------------------------------------------------------------------- 1 | 2 | extern crate vonuvoli_scheme; 3 | 4 | 5 | fn main () -> () { 6 | return vonuvoli_scheme::exports::interpreter_premain (); 7 | } 8 | 9 | -------------------------------------------------------------------------------- /sources/libraries.rs: -------------------------------------------------------------------------------- 1 | 2 | pub mod exports { 3 | 4 | pub use super::super::libraries_builtins::exports::*; 5 | pub use super::super::libraries_r7rs::exports::*; 6 | 7 | } 8 | 9 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_build_1__immutable.out: -------------------------------------------------------------------------------- 1 | average : 44 2 | stdev : 1 / 1.73% 3 | median : 44 / 1.40% 4 | min / max : 44 / 44 / 44 / 44 / 46 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_build_1__mutable.out: -------------------------------------------------------------------------------- 1 | average : 44 2 | stdev : 1 / 2.12% 3 | median : 43 / 1.02% 4 | min / max : 43 / 43 / 43 / 44 / 46 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_build_2__immutable.out: -------------------------------------------------------------------------------- 1 | average : 82 2 | stdev : 2 / 2.56% 3 | median : 81 / 1.40% 4 | min / max : 79 / 80 / 81 / 83 / 86 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_build_2__mutable.out: -------------------------------------------------------------------------------- 1 | average : 79 2 | stdev : 2 / 2.03% 3 | median : 78 / 1.42% 4 | min / max : 78 / 78 / 78 / 79 / 83 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_build_3__immutable.out: -------------------------------------------------------------------------------- 1 | average : 114 2 | stdev : 2 / 2.17% 3 | median : 113 / 1.44% 4 | min / max : 111 / 112 / 113 / 114 / 120 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_build_3__mutable.out: -------------------------------------------------------------------------------- 1 | average : 112 2 | stdev : 3 / 2.26% 3 | median : 111 / 1.66% 4 | min / max : 109 / 110 / 111 / 113 / 118 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_build_4__immutable.out: -------------------------------------------------------------------------------- 1 | average : 142 2 | stdev : 3 / 2.36% 3 | median : 141 / 1.28% 4 | min / max : 139 / 140 / 141 / 143 / 149 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_build_4__mutable.out: -------------------------------------------------------------------------------- 1 | average : 142 2 | stdev : 4 / 2.56% 3 | median : 140 / 1.30% 4 | min / max : 139 / 140 / 140 / 147 / 149 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_clone__0__immutable.out: -------------------------------------------------------------------------------- 1 | average : 75 2 | stdev : 1 / 1.90% 3 | median : 74 / 0.88% 4 | min / max : 74 / 74 / 74 / 75 / 78 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_clone__0__mutable.out: -------------------------------------------------------------------------------- 1 | average : 75 2 | stdev : 2 / 2.22% 3 | median : 74 / 1.32% 4 | min / max : 73 / 74 / 74 / 75 / 79 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_clone__10000__immutable.out: -------------------------------------------------------------------------------- 1 | average : 1160424 2 | stdev : 11033 / 0.95% 3 | median : 1158413 / 0.94% 4 | min / max : 1145174 / 1152296 / 1158413 / 1165765 / 1182362 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_clone__10000__mutable.out: -------------------------------------------------------------------------------- 1 | average : 1320766 2 | stdev : 14048 / 1.06% 3 | median : 1319437 / 1.27% 4 | min / max : 1293620 / 1311972 / 1319437 / 1333301 / 1341891 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_clone__1000__immutable.out: -------------------------------------------------------------------------------- 1 | average : 106836 2 | stdev : 2643 / 2.47% 3 | median : 105540 / 1.47% 4 | min / max : 104352 / 104787 / 105540 / 109131 / 111603 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_clone__1000__mutable.out: -------------------------------------------------------------------------------- 1 | average : 121439 2 | stdev : 1811 / 1.49% 3 | median : 120694 / 0.49% 4 | min / max : 119942 / 120363 / 120694 / 121412 / 125991 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_clone__100__immutable.out: -------------------------------------------------------------------------------- 1 | average : 7791 2 | stdev : 179 / 2.30% 3 | median : 7708 / 0.71% 4 | min / max : 7650 / 7680 / 7708 / 7796 / 8218 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_clone__100__mutable.out: -------------------------------------------------------------------------------- 1 | average : 9075 2 | stdev : 230 / 2.53% 3 | median : 8977 / 1.07% 4 | min / max : 8886 / 8930 / 8977 / 9103 / 9683 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_clone__10__immutable.out: -------------------------------------------------------------------------------- 1 | average : 883 2 | stdev : 24 / 2.67% 3 | median : 871 / 0.70% 4 | min / max : 865 / 868 / 871 / 887 / 940 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_clone__10__mutable.out: -------------------------------------------------------------------------------- 1 | average : 1052 2 | stdev : 22 / 2.09% 3 | median : 1043 / 1.22% 4 | min / max : 1033 / 1038 / 1043 / 1058 / 1110 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_clone__1__immutable.out: -------------------------------------------------------------------------------- 1 | average : 158 2 | stdev : 4 / 2.32% 3 | median : 157 / 0.97% 4 | min / max : 156 / 156 / 157 / 158 / 167 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_clone__1__mutable.out: -------------------------------------------------------------------------------- 1 | average : 162 2 | stdev : 5 / 2.95% 3 | median : 160 / 1.56% 4 | min / max : 158 / 158 / 160 / 163 / 173 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_empty.out: -------------------------------------------------------------------------------- 1 | average : 10 2 | stdev : 0 / 1.81% 3 | median : 10 / 0.70% 4 | min / max : 10 / 10 / 10 / 10 / 10 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_length__0.out: -------------------------------------------------------------------------------- 1 | average : 28 2 | stdev : 1 / 2.08% 3 | median : 28 / 0.93% 4 | min / max : 28 / 28 / 28 / 29 / 30 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_length__10000__immutable.out: -------------------------------------------------------------------------------- 1 | average : 325975 2 | stdev : 1490 / 0.46% 3 | median : 325649 / 0.26% 4 | min / max : 324014 / 325097 / 325649 / 326350 / 329723 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_length__10000__mutable.out: -------------------------------------------------------------------------------- 1 | average : 727671 2 | stdev : 7650 / 1.05% 3 | median : 726267 / 0.64% 4 | min / max : 715817 / 724222 / 726267 / 729696 / 747012 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_length__1000__immutable.out: -------------------------------------------------------------------------------- 1 | average : 32646 2 | stdev : 290 / 0.89% 3 | median : 32522 / 0.49% 4 | min / max : 32379 / 32447 / 32522 / 32817 / 33349 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_length__1000__mutable.out: -------------------------------------------------------------------------------- 1 | average : 72198 2 | stdev : 775 / 1.07% 3 | median : 71918 / 1.12% 4 | min / max : 71332 / 71469 / 71918 / 72904 / 73561 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_length__100__immutable.out: -------------------------------------------------------------------------------- 1 | average : 3304 2 | stdev : 38 / 1.15% 3 | median : 3289 / 0.39% 4 | min / max : 3272 / 3282 / 3289 / 3300 / 3409 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_length__100__mutable.out: -------------------------------------------------------------------------------- 1 | average : 7312 2 | stdev : 60 / 0.81% 3 | median : 7296 / 0.33% 4 | min / max : 7267 / 7282 / 7296 / 7314 / 7511 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_length__10__immutable.out: -------------------------------------------------------------------------------- 1 | average : 356 2 | stdev : 7 / 2.04% 3 | median : 354 / 1.28% 4 | min / max : 349 / 351 / 354 / 358 / 375 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_length__10__mutable.out: -------------------------------------------------------------------------------- 1 | average : 707 2 | stdev : 11 / 1.52% 3 | median : 702 / 0.64% 4 | min / max : 697 / 700 / 702 / 712 / 730 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_length__1__immutable.out: -------------------------------------------------------------------------------- 1 | average : 59 2 | stdev : 1 / 2.02% 3 | median : 58 / 0.60% 4 | min / max : 58 / 58 / 58 / 59 / 62 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_length__1__mutable.out: -------------------------------------------------------------------------------- 1 | average : 60 2 | stdev : 1 / 1.92% 3 | median : 60 / 1.22% 4 | min / max : 59 / 59 / 60 / 60 / 63 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_make__0__immutable.out: -------------------------------------------------------------------------------- 1 | average : 23 2 | stdev : 1 / 2.29% 3 | median : 23 / 1.64% 4 | min / max : 23 / 23 / 23 / 24 / 25 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_make__0__mutable.out: -------------------------------------------------------------------------------- 1 | average : 23 2 | stdev : 1 / 2.21% 3 | median : 23 / 1.61% 4 | min / max : 23 / 23 / 23 / 23 / 25 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_make__10000__immutable.out: -------------------------------------------------------------------------------- 1 | average : 819844 2 | stdev : 7424 / 0.91% 3 | median : 819852 / 0.85% 4 | min / max : 804923 / 815439 / 819852 / 824591 / 833109 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_make__10000__mutable.out: -------------------------------------------------------------------------------- 1 | average : 814044 2 | stdev : 13989 / 1.72% 3 | median : 812652 / 1.84% 4 | min / max : 790481 / 804756 / 812652 / 824424 / 837467 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_make__1000__immutable.out: -------------------------------------------------------------------------------- 1 | average : 77004 2 | stdev : 848 / 1.10% 3 | median : 76687 / 0.48% 4 | min / max : 75983 / 76587 / 76687 / 77223 / 79297 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_make__1000__mutable.out: -------------------------------------------------------------------------------- 1 | average : 74049 2 | stdev : 1865 / 2.52% 3 | median : 73130 / 1.08% 4 | min / max : 72409 / 72775 / 73130 / 74997 / 78181 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_make__100__immutable.out: -------------------------------------------------------------------------------- 1 | average : 4437 2 | stdev : 62 / 1.40% 3 | median : 4403 / 1.13% 4 | min / max : 4369 / 4382 / 4403 / 4490 / 4547 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_make__100__mutable.out: -------------------------------------------------------------------------------- 1 | average : 4413 2 | stdev : 47 / 1.07% 3 | median : 4405 / 1.39% 4 | min / max : 4354 / 4368 / 4405 / 4451 / 4487 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_make__10__immutable.out: -------------------------------------------------------------------------------- 1 | average : 445 2 | stdev : 8 / 1.90% 3 | median : 443 / 0.82% 4 | min / max : 438 / 440 / 443 / 445 / 468 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_make__10__mutable.out: -------------------------------------------------------------------------------- 1 | average : 464 2 | stdev : 5 / 1.06% 3 | median : 463 / 1.36% 4 | min / max : 458 / 460 / 463 / 469 / 473 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_make__1__immutable.out: -------------------------------------------------------------------------------- 1 | average : 79 2 | stdev : 2 / 2.16% 3 | median : 78 / 0.61% 4 | min / max : 77 / 77 / 78 / 79 / 82 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_make__1__mutable.out: -------------------------------------------------------------------------------- 1 | average : 78 2 | stdev : 2 / 2.60% 3 | median : 77 / 1.93% 4 | min / max : 76 / 77 / 77 / 79 / 82 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_reverse__0__immutable.out: -------------------------------------------------------------------------------- 1 | average : 67 2 | stdev : 1 / 1.02% 3 | median : 66 / 0.71% 4 | min / max : 66 / 66 / 66 / 67 / 68 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_reverse__0__mutable.out: -------------------------------------------------------------------------------- 1 | average : 67 2 | stdev : 2 / 2.43% 3 | median : 66 / 1.43% 4 | min / max : 65 / 66 / 66 / 68 / 71 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_reverse__10000__immutable.out: -------------------------------------------------------------------------------- 1 | average : 1174936 2 | stdev : 17548 / 1.49% 3 | median : 1167492 / 1.10% 4 | min / max : 1157918 / 1162473 / 1167492 / 1179590 / 1219785 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_reverse__10000__mutable.out: -------------------------------------------------------------------------------- 1 | average : 1335779 2 | stdev : 30276 / 2.27% 3 | median : 1325538 / 1.60% 4 | min / max : 1306445 / 1312679 / 1325538 / 1343266 / 1407638 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_reverse__1000__immutable.out: -------------------------------------------------------------------------------- 1 | average : 107187 2 | stdev : 1508 / 1.41% 3 | median : 106527 / 0.66% 4 | min / max : 105440 / 106398 / 106527 / 107325 / 110916 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_reverse__1000__mutable.out: -------------------------------------------------------------------------------- 1 | average : 121095 2 | stdev : 990 / 0.82% 3 | median : 120891 / 0.41% 4 | min / max : 119577 / 120610 / 120891 / 121351 / 123535 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_reverse__100__immutable.out: -------------------------------------------------------------------------------- 1 | average : 7922 2 | stdev : 200 / 2.53% 3 | median : 7844 / 0.89% 4 | min / max : 7764 / 7800 / 7844 / 7907 / 8407 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_reverse__100__mutable.out: -------------------------------------------------------------------------------- 1 | average : 9129 2 | stdev : 84 / 0.92% 3 | median : 9123 / 0.48% 4 | min / max : 9001 / 9088 / 9123 / 9150 / 9326 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_reverse__10__immutable.out: -------------------------------------------------------------------------------- 1 | average : 908 2 | stdev : 14 / 1.50% 3 | median : 902 / 0.59% 4 | min / max : 893 / 900 / 902 / 910 / 942 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_reverse__10__mutable.out: -------------------------------------------------------------------------------- 1 | average : 1062 2 | stdev : 27 / 2.56% 3 | median : 1050 / 1.17% 4 | min / max : 1039 / 1045 / 1050 / 1067 / 1126 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_reverse__1__immutable.out: -------------------------------------------------------------------------------- 1 | average : 160 2 | stdev : 4 / 2.62% 3 | median : 158 / 1.77% 4 | min / max : 156 / 157 / 158 / 161 / 171 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/builtins-lists--benchmark__list_reverse__1__mutable.out: -------------------------------------------------------------------------------- 1 | average : 166 2 | stdev : 4 / 2.23% 3 | median : 164 / 1.50% 4 | min / max : 161 / 163 / 164 / 167 / 175 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/low-level-rust--benchmark__box_vs_rc__box_as_ref.out: -------------------------------------------------------------------------------- 1 | average : 0 2 | stdev : 0 / 2.43% 3 | median : 0 / 2.19% 4 | min / max : 0 / 0 / 0 / 0 / 0 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/low-level-rust--benchmark__box_vs_rc__box_clone.out: -------------------------------------------------------------------------------- 1 | average : 18 2 | stdev : 0 / 2.14% 3 | median : 18 / 1.65% 4 | min / max : 18 / 18 / 18 / 18 / 19 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/low-level-rust--benchmark__box_vs_rc__rc_as_ref.out: -------------------------------------------------------------------------------- 1 | average : 0 2 | stdev : 0 / 1.76% 3 | median : 0 / 1.04% 4 | min / max : 0 / 0 / 0 / 0 / 0 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/low-level-rust--benchmark__box_vs_rc__rc_clone.out: -------------------------------------------------------------------------------- 1 | average : 4 2 | stdev : 0 / 2.16% 3 | median : 4 / 1.20% 4 | min / max : 4 / 4 / 4 / 4 / 4 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/low-level-rust--benchmark__internals__box_rc__clone.out: -------------------------------------------------------------------------------- 1 | average : 22 2 | stdev : 1 / 2.47% 3 | median : 22 / 1.79% 4 | min / max : 22 / 22 / 22 / 22 / 23 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/low-level-rust--benchmark__internals__rc_only__clone.out: -------------------------------------------------------------------------------- 1 | average : 4 2 | stdev : 0 / 1.09% 3 | median : 4 / 1.12% 4 | min / max : 4 / 4 / 4 / 5 / 5 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/low-level-rust--benchmark__internals__rc_rc__clone.out: -------------------------------------------------------------------------------- 1 | average : 4 2 | stdev : 0 / 1.26% 3 | median : 4 / 1.09% 4 | min / max : 4 / 4 / 4 / 5 / 5 5 | mem-leaks : 0 KB 6 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__arithmetic.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 3928 3 | stdev : 5 / 0.13% 4 | median : 3927 / 0.10% 5 | min / max : 3922 / 3925 / 3927 / 3933 / 3940 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 661 / +83.17% / 5.94* 9 | stdev : 0 / 0.05% 10 | median : 661 / 0.01% 11 | min / max : 661 / 661 / 661 / 661 / 662 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__arrays.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 67867 3 | stdev : 98 / 0.14% 4 | median : 67841 / 0.08% 5 | min / max : 67785 / 67805 / 67841 / 67872 / 68147 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 41369 / +39.04% / 1.64* 9 | stdev : 101 / 0.24% 10 | median : 41333 / 0.08% 11 | min / max : 41288 / 41314 / 41333 / 41360 / 41663 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__booleans.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 19740 3 | stdev : 23 / 0.11% 4 | median : 19731 / 0.03% 5 | min / max : 19725 / 19729 / 19731 / 19739 / 19805 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 4011 / +79.68% / 4.92* 9 | stdev : 6 / 0.15% 10 | median : 4009 / 0.11% 11 | min / max : 4006 / 4006 / 4009 / 4013 / 4027 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__bytes.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 61909 3 | stdev : 87 / 0.14% 4 | median : 61879 / 0.09% 5 | min / max : 61826 / 61853 / 61879 / 61926 / 62122 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 38442 / +37.90% / 1.61* 9 | stdev : 71 / 0.18% 10 | median : 38420 / 0.10% 11 | min / max : 38373 / 38396 / 38420 / 38448 / 38634 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__cache_bytes_default.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 708628 3 | stdev : 1181 / 0.17% 4 | median : 708556 / 0.10% 5 | min / max : 706426 / 708105 / 708556 / 709031 / 711487 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 699708 / +1.26% / 1.01* 9 | stdev : 1422 / 0.20% 10 | median : 699555 / 0.09% 11 | min / max : 697474 / 699200 / 699555 / 700130 / 703694 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__cache_bytes_namespace.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 937449 3 | stdev : 2041 / 0.22% 4 | median : 936776 / 0.15% 5 | min / max : 935430 / 935892 / 936776 / 938313 / 941893 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 910476 / +2.88% / 1.03* 9 | stdev : 2491 / 0.27% 10 | median : 909484 / 0.14% 11 | min / max : 908305 / 908740 / 909484 / 911210 / 918206 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__cache_objects_busting.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 735354 3 | stdev : 1641 / 0.22% 4 | median : 734942 / 0.09% 5 | min / max : 733153 / 734592 / 734942 / 735512 / 739908 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 727627 / +1.05% / 1.01* 9 | stdev : 781 / 0.11% 10 | median : 727685 / 0.10% 11 | min / max : 725778 / 727271 / 727685 / 728186 / 728848 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__cache_objects_default.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 739743 3 | stdev : 1477 / 0.20% 4 | median : 739469 / 0.12% 5 | min / max : 737589 / 738922 / 739469 / 740139 / 743704 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 727211 / +1.69% / 1.02* 9 | stdev : 844 / 0.12% 10 | median : 727201 / 0.11% 11 | min / max : 725662 / 726631 / 727201 / 727663 / 729267 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__cache_objects_namespace.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 969087 3 | stdev : 1620 / 0.17% 4 | median : 968703 / 0.17% 5 | min / max : 967072 / 967792 / 968703 / 970306 / 972389 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 929858 / +4.05% / 1.04* 9 | stdev : 1569 / 0.17% 10 | median : 929325 / 0.09% 11 | min / max : 928492 / 928819 / 929325 / 930361 / 934074 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__cache_objects_partitions.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 911672 3 | stdev : 2032 / 0.22% 4 | median : 911511 / 0.13% 5 | min / max : 908815 / 910726 / 911511 / 912264 / 915847 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 890740 / +2.30% / 1.02* 9 | stdev : 1343 / 0.15% 10 | median : 890214 / 0.11% 11 | min / max : 889161 / 889688 / 890214 / 891394 / 893682 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__comparisons_equivalent_by_identity.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 31248 3 | stdev : 82 / 0.26% 4 | median : 31218 / 0.07% 5 | min / max : 31195 / 31206 / 31218 / 31244 / 31504 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 20257 / +35.17% / 1.54* 9 | stdev : 37 / 0.18% 10 | median : 20245 / 0.12% 11 | min / max : 20216 / 20230 / 20245 / 20265 / 20351 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__comparisons_equivalent_by_identity_negated.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 135233 3 | stdev : 184 / 0.14% 4 | median : 135137 / 0.04% 5 | min / max : 135070 / 135116 / 135137 / 135347 / 135674 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 88416 / +34.62% / 1.53* 9 | stdev : 250 / 0.28% 10 | median : 88343 / 0.08% 11 | min / max : 88215 / 88300 / 88343 / 88416 / 89206 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__comparisons_equivalent_by_value_coerced_recursive.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 32416 3 | stdev : 66 / 0.20% 4 | median : 32427 / 0.14% 5 | min / max : 32292 / 32397 / 32427 / 32457 / 32530 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 22263 / +31.32% / 1.46* 9 | stdev : 20 / 0.09% 10 | median : 22260 / 0.07% 11 | min / max : 22239 / 22248 / 22260 / 22270 / 22318 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__comparisons_equivalent_by_value_coerced_recursive_negated.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 134408 3 | stdev : 156 / 0.12% 4 | median : 134376 / 0.06% 5 | min / max : 134250 / 134317 / 134376 / 134421 / 134879 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 91413 / +31.99% / 1.47* 9 | stdev : 107 / 0.12% 10 | median : 91373 / 0.08% 11 | min / max : 91299 / 91348 / 91373 / 91453 / 91706 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__comparisons_equivalent_by_value_coerced_shallow.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 31716 3 | stdev : 33 / 0.10% 4 | median : 31711 / 0.09% 5 | min / max : 31678 / 31692 / 31711 / 31729 / 31807 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 22039 / +30.51% / 1.44* 9 | stdev : 247 / 1.12% 10 | median : 21905 / 0.20% 11 | min / max : 21868 / 21885 / 21905 / 22076 / 22531 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__comparisons_equivalent_by_value_coerced_shallow_negated.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 136210 3 | stdev : 261 / 0.19% 4 | median : 136121 / 0.06% 5 | min / max : 136043 / 136073 / 136121 / 136174 / 137008 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 89693 / +34.15% / 1.52* 9 | stdev : 90 / 0.10% 10 | median : 89677 / 0.06% 11 | min / max : 89588 / 89646 / 89677 / 89716 / 89951 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__comparisons_equivalent_by_value_strict_recursive.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 32170 3 | stdev : 35 / 0.11% 4 | median : 32160 / 0.08% 5 | min / max : 32125 / 32145 / 32160 / 32182 / 32243 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 21826 / +32.15% / 1.47* 9 | stdev : 73 / 0.33% 10 | median : 21795 / 0.14% 11 | min / max : 21770 / 21777 / 21795 / 21849 / 22019 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__comparisons_equivalent_by_value_strict_recursive_negated.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 132140 3 | stdev : 355 / 0.27% 4 | median : 131963 / 0.06% 5 | min / max : 131896 / 131935 / 131963 / 132138 / 133183 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 89451 / +32.31% / 1.48* 9 | stdev : 169 / 0.19% 10 | median : 89386 / 0.05% 11 | min / max : 89335 / 89360 / 89386 / 89433 / 89938 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__comparisons_equivalent_by_value_strict_shallow.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 36538 3 | stdev : 81 / 0.22% 4 | median : 36509 / 0.06% 5 | min / max : 36486 / 36497 / 36509 / 36535 / 36789 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 26402 / +27.74% / 1.38* 9 | stdev : 83 / 0.31% 10 | median : 26362 / 0.09% 11 | min / max : 26340 / 26351 / 26362 / 26432 / 26623 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__comparisons_equivalent_by_value_strict_shallow_negated.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 132538 3 | stdev : 248 / 0.19% 4 | median : 132441 / 0.05% 5 | min / max : 132362 / 132412 / 132441 / 132493 / 133275 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 89768 / +32.27% / 1.48* 9 | stdev : 211 / 0.24% 10 | median : 89679 / 0.08% 11 | min / max : 89595 / 89636 / 89679 / 89805 / 90347 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__comparisons_equivalent_objects.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 12291 3 | stdev : 56 / 0.45% 4 | median : 12280 / 0.36% 5 | min / max : 12230 / 12248 / 12280 / 12298 / 12431 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 1135 / +90.77% / 10.83* 9 | stdev : 1 / 0.12% 10 | median : 1134 / 0.01% 11 | min / max : 1134 / 1134 / 1134 / 1134 / 1139 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__comparisons_equivalent_objects_negated.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 12406 3 | stdev : 21 / 0.17% 4 | median : 12399 / 0.12% 5 | min / max : 12383 / 12391 / 12399 / 12415 / 12457 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 1142 / +90.80% / 10.87* 9 | stdev : 1 / 0.11% 10 | median : 1141 / 0.01% 11 | min / max : 1141 / 1141 / 1141 / 1141 / 1145 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__comparisons_ordering_numbers.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 299118 3 | stdev : 516 / 0.17% 4 | median : 298952 / 0.05% 5 | min / max : 298747 / 298868 / 298952 / 299049 / 300722 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 225938 / +24.47% / 1.32* 9 | stdev : 271 / 0.12% 10 | median : 225851 / 0.03% 11 | min / max : 225756 / 225813 / 225851 / 225915 / 226820 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__comparisons_ordering_numbers_negated.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 365395 3 | stdev : 862 / 0.24% 4 | median : 365087 / 0.12% 5 | min / max : 364364 / 364837 / 365087 / 365465 / 367224 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 237862 / +34.90% / 1.54* 9 | stdev : 871 / 0.37% 10 | median : 237466 / 0.08% 11 | min / max : 237306 / 237364 / 237466 / 237732 / 240290 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__comparisons_ordering_objects.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 1294515 3 | stdev : 4332 / 0.33% 4 | median : 1292888 / 0.14% 5 | min / max : 1290891 / 1291710 / 1292888 / 1295109 / 1306796 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 1046188 / +19.18% / 1.24* 9 | stdev : 2442 / 0.23% 10 | median : 1045157 / 0.09% 11 | min / max : 1044260 / 1044680 / 1045157 / 1046517 / 1053521 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__comparisons_ordering_objects_negated.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 1527248 3 | stdev : 2350 / 0.15% 4 | median : 1526373 / 0.08% 5 | min / max : 1524842 / 1525874 / 1526373 / 1527479 / 1533923 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 1095809 / +28.25% / 1.39* 9 | stdev : 1881 / 0.17% 10 | median : 1095009 / 0.08% 11 | min / max : 1094270 / 1094529 / 1095009 / 1095983 / 1100474 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__contexts.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 28799 3 | stdev : 59 / 0.21% 4 | median : 28781 / 0.08% 5 | min / max : 28748 / 28765 / 28781 / 28796 / 28975 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 21312 / +26.00% / 1.35* 9 | stdev : 129 / 0.60% 10 | median : 21269 / 0.08% 11 | min / max : 21242 / 21259 / 21269 / 21284 / 21752 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__control.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 6771 3 | stdev : 16 / 0.24% 4 | median : 6764 / 0.11% 5 | min / max : 6758 / 6760 / 6764 / 6776 / 6814 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 3634 / +46.33% / 1.86* 9 | stdev : 11 / 0.31% 10 | median : 3630 / 0.14% 11 | min / max : 3623 / 3627 / 3630 / 3637 / 3664 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__crypto.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 145264 3 | stdev : 403 / 0.28% 4 | median : 145228 / 0.32% 5 | min / max : 144727 / 144899 / 145228 / 145484 / 146089 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 97911 / +32.60% / 1.48* 9 | stdev : 475 / 0.49% 10 | median : 97733 / 0.41% 11 | min / max : 97406 / 97548 / 97733 / 98141 / 99065 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__encoding.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 262827 3 | stdev : 750 / 0.29% 4 | median : 262476 / 0.08% 5 | min / max : 262248 / 262379 / 262476 / 263031 / 264932 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 156847 / +40.32% / 1.68* 9 | stdev : 638 / 0.41% 10 | median : 156535 / 0.10% 11 | min / max : 156406 / 156481 / 156535 / 156998 / 158565 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__errors.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 16588 3 | stdev : 108 / 0.65% 4 | median : 16544 / 0.08% 5 | min / max : 16526 / 16538 / 16544 / 16562 / 16923 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 9919 / +40.20% / 1.67* 9 | stdev : 42 / 0.42% 10 | median : 9903 / 0.16% 11 | min / max : 9885 / 9895 / 9903 / 9920 / 10038 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__filesystem.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 1341586 3 | stdev : 3986 / 0.30% 4 | median : 1342484 / 0.33% 5 | min / max : 1334707 / 1338050 / 1342484 / 1343746 / 1348241 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 1202211 / +10.39% / 1.12* 9 | stdev : 9069 / 0.75% 10 | median : 1200959 / 0.57% 11 | min / max : 1192792 / 1196555 / 1200959 / 1205853 / 1228204 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__functions.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 25109 3 | stdev : 84 / 0.33% 4 | median : 25073 / 0.16% 5 | min / max : 25038 / 25052 / 25073 / 25140 / 25336 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 19721 / +21.46% / 1.27* 9 | stdev : 49 / 0.25% 10 | median : 19708 / 0.16% 11 | min / max : 19669 / 19690 / 19708 / 19732 / 19840 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__functions_arrays.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 45345 3 | stdev : 169 / 0.37% 4 | median : 45253 / 0.08% 5 | min / max : 45220 / 45236 / 45253 / 45389 / 45735 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 35606 / +21.48% / 1.27* 9 | stdev : 130 / 0.36% 10 | median : 35544 / 0.08% 11 | min / max : 35516 / 35528 / 35544 / 35589 / 35931 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__functions_bytes.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 45844 3 | stdev : 211 / 0.46% 4 | median : 45712 / 0.10% 5 | min / max : 45678 / 45699 / 45712 / 46003 / 46273 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 35724 / +22.07% / 1.28* 9 | stdev : 126 / 0.35% 10 | median : 35661 / 0.11% 11 | min / max : 35624 / 35646 / 35661 / 35755 / 36024 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__functions_higher.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 62203 3 | stdev : 213 / 0.34% 4 | median : 62098 / 0.13% 5 | min / max : 62025 / 62064 / 62098 / 62263 / 62799 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 50514 / +18.79% / 1.23* 9 | stdev : 253 / 0.50% 10 | median : 50406 / 0.17% 11 | min / max : 50323 / 50365 / 50406 / 50547 / 51219 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__functions_lists.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 55388 3 | stdev : 342 / 0.62% 4 | median : 55247 / 0.06% 5 | min / max : 55207 / 55228 / 55247 / 55331 / 56451 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 43963 / +20.63% / 1.26* 9 | stdev : 218 / 0.50% 10 | median : 43859 / 0.08% 11 | min / max : 43819 / 43843 / 43859 / 44025 / 44602 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__functions_strings.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 33033 3 | stdev : 203 / 0.61% 4 | median : 32925 / 0.14% 5 | min / max : 32889 / 32908 / 32925 / 33081 / 33540 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 28901 / +12.51% / 1.14* 9 | stdev : 285 / 0.99% 10 | median : 28773 / 0.11% 11 | min / max : 28742 / 28759 / 28773 / 28903 / 29776 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__hashes_blake2b.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 185223 3 | stdev : 1217 / 0.66% 4 | median : 184693 / 0.32% 5 | min / max : 184205 / 184357 / 184693 / 185645 / 188336 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 139233 / +24.83% / 1.33* 9 | stdev : 218 / 0.16% 10 | median : 139149 / 0.05% 11 | min / max : 139087 / 139111 / 139149 / 139234 / 139894 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__hashes_blake2s.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 125119 3 | stdev : 153 / 0.12% 4 | median : 125114 / 0.05% 5 | min / max : 124829 / 125085 / 125114 / 125163 / 125500 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 90171 / +27.93% / 1.39* 9 | stdev : 514 / 0.57% 10 | median : 89994 / 0.06% 11 | min / max : 89946 / 89977 / 89994 / 90070 / 92100 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__hashes_default.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 29789 3 | stdev : 101 / 0.34% 4 | median : 29789 / 0.37% 5 | min / max : 29637 / 29704 / 29789 / 29856 / 29980 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 16241 / +45.48% / 1.83* 9 | stdev : 28 / 0.17% 10 | median : 16233 / 0.11% 11 | min / max : 16212 / 16221 / 16233 / 16245 / 16316 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__hashes_seahash.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 74366 3 | stdev : 168 / 0.23% 4 | median : 74306 / 0.09% 5 | min / max : 74230 / 74270 / 74306 / 74358 / 74807 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 41167 / +44.64% / 1.81* 9 | stdev : 117 / 0.28% 10 | median : 41125 / 0.22% 11 | min / max : 41059 / 41074 / 41125 / 41215 / 41483 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__hashes_siphash.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 77368 3 | stdev : 376 / 0.49% 4 | median : 77150 / 0.13% 5 | min / max : 77060 / 77099 / 77150 / 77597 / 78186 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 43486 / +43.79% / 1.78* 9 | stdev : 233 / 0.53% 10 | median : 43376 / 0.10% 11 | min / max : 43336 / 43353 / 43376 / 43527 / 44160 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__issues.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 5445 3 | stdev : 87 / 1.60% 4 | median : 5403 / 0.16% 5 | min / max : 5396 / 5399 / 5403 / 5431 / 5688 6 | mem-leaks : 143 KB (!!!! DETECTED !!!!) 7 | with optimizations: 8 | average : 4667 / +14.29% / 1.17* 9 | stdev : 98 / 2.11% 10 | median : 4633 / 0.12% 11 | min / max : 4626 / 4629 / 4633 / 4649 / 4992 12 | mem-leaks : 752 KB (!!!! DETECTED !!!!) 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__lambdas.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 76252 3 | stdev : 1609 / 2.11% 4 | median : 75377 / 0.13% 5 | min / max : 75299 / 75339 / 75377 / 75793 / 79439 6 | mem-leaks : 363 KB (!!!! DETECTED !!!!) 7 | with optimizations: 8 | average : 56091 / +26.44% / 1.36* 9 | stdev : 1180 / 2.10% 10 | median : 55216 / 0.24% 11 | min / max : 55126 / 55166 / 55216 / 57571 / 57862 12 | mem-leaks : 5322 KB (!!!! DETECTED !!!!) 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__lists.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 45512 3 | stdev : 45 / 0.10% 4 | median : 45501 / 0.08% 5 | min / max : 45460 / 45477 / 45501 / 45537 / 45636 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 34577 / +24.03% / 1.32* 9 | stdev : 36 / 0.10% 10 | median : 34569 / 0.07% 11 | min / max : 34537 / 34555 / 34569 / 34588 / 34678 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__loops.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 14120 3 | stdev : 31 / 0.22% 4 | median : 14108 / 0.07% 5 | min / max : 14096 / 14103 / 14108 / 14115 / 14195 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 6314 / +55.29% / 2.24* 9 | stdev : 5 / 0.09% 10 | median : 6312 / 0.07% 11 | min / max : 6306 / 6310 / 6312 / 6317 / 6327 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__pairs.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 15916 3 | stdev : 24 / 0.15% 4 | median : 15910 / 0.10% 5 | min / max : 15891 / 15903 / 15910 / 15922 / 15995 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 7016 / +55.92% / 2.27* 9 | stdev : 14 / 0.19% 10 | median : 7014 / 0.24% 11 | min / max : 6998 / 7003 / 7014 / 7028 / 7041 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__parameters.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 10282 3 | stdev : 15 / 0.14% 4 | median : 10278 / 0.08% 5 | min / max : 10266 / 10274 / 10278 / 10284 / 10327 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 7208 / +29.90% / 1.43* 9 | stdev : 18 / 0.25% 10 | median : 7209 / 0.27% 11 | min / max : 7180 / 7191 / 7209 / 7221 / 7243 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__paths.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 1043311 3 | stdev : 2043 / 0.20% 4 | median : 1043334 / 0.26% 5 | min / max : 1040458 / 1041132 / 1043334 / 1044748 / 1046942 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 735288 / +29.52% / 1.42* 9 | stdev : 1887 / 0.26% 10 | median : 734249 / 0.27% 11 | min / max : 732932 / 733659 / 734249 / 737157 / 738405 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__ports.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 1225 3 | stdev : 1 / 0.10% 4 | median : 1225 / 0.06% 5 | min / max : 1224 / 1225 / 1225 / 1226 / 1229 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 382 / +68.85% / 3.21* 9 | stdev : 0 / 0.06% 10 | median : 382 / 0.06% 11 | min / max : 381 / 382 / 382 / 382 / 382 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__ports_memory.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 24960 3 | stdev : 43 / 0.17% 4 | median : 24948 / 0.08% 5 | min / max : 24922 / 24934 / 24948 / 24962 / 25096 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 13736 / +44.97% / 1.82* 9 | stdev : 48 / 0.35% 10 | median : 13721 / 0.14% 11 | min / max : 13695 / 13710 / 13721 / 13738 / 13880 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__ports_native.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 154666 3 | stdev : 409 / 0.26% 4 | median : 154629 / 0.25% 5 | min / max : 154071 / 154407 / 154629 / 154938 / 155564 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 138057 / +10.74% / 1.12* 9 | stdev : 6371 / 4.61% 10 | median : 134921 / 1.21% 11 | min / max : 132663 / 134022 / 134921 / 141723 / 153575 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__ports_parameters.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 48525 3 | stdev : 1285 / 2.65% 4 | median : 47904 / 0.89% 5 | min / max : 47256 / 47682 / 47904 / 49346 / 51571 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 43809 / +9.72% / 1.11* 9 | stdev : 353 / 0.80% 10 | median : 43711 / 0.40% 11 | min / max : 43427 / 43622 / 43711 / 43864 / 44756 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__processes.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 14912122 3 | stdev : 206029 / 1.38% 4 | median : 14917514 / 1.67% 5 | min / max : 14554335 / 14742197 / 14917514 / 15073472 / 15245013 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 14732764 / +1.20% / 1.01* 9 | stdev : 199619 / 1.35% 10 | median : 14651564 / 1.71% 11 | min / max : 14475982 / 14550736 / 14651564 / 14886394 / 15096620 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__quotation.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 13793 3 | stdev : 20 / 0.14% 4 | median : 13789 / 0.10% 5 | min / max : 13770 / 13779 / 13789 / 13798 / 13841 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 7814 / +43.35% / 1.77* 9 | stdev : 10 / 0.13% 10 | median : 7810 / 0.11% 11 | min / max : 7802 / 7807 / 7810 / 7819 / 7840 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__random.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 80689880 3 | stdev : 11747246 / 14.56% 4 | median : 77490898 / 14.19% 5 | min / max : 62609096 / 72584941 / 77490898 / 88479653 / 104985160 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 47993157 / +40.52% / 1.68* 9 | stdev : 7451805 / 15.53% 10 | median : 46195593 / 13.17% 11 | min / max : 38035190 / 42266420 / 46195593 / 51820032 / 63883863 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__records_procedures.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 48210 3 | stdev : 258 / 0.54% 4 | median : 48163 / 0.36% 5 | min / max : 47857 / 48066 / 48163 / 48301 / 48966 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 27235 / +43.51% / 1.77* 9 | stdev : 177 / 0.65% 10 | median : 27154 / 0.36% 11 | min / max : 27078 / 27099 / 27154 / 27360 / 27626 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__records_syntaxes.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 41396 3 | stdev : 237 / 0.57% 4 | median : 41380 / 0.72% 5 | min / max : 41139 / 41184 / 41380 / 41587 / 41891 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 24528 / +40.75% / 1.69* 9 | stdev : 109 / 0.44% 10 | median : 24488 / 0.41% 11 | min / max : 24415 / 24432 / 24488 / 24600 / 24748 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__regex_bytes.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 93031 3 | stdev : 572 / 0.61% 4 | median : 92884 / 0.84% 5 | min / max : 92289 / 92460 / 92884 / 93532 / 94022 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 87608 / +5.83% / 1.06* 9 | stdev : 400 / 0.46% 10 | median : 87562 / 0.57% 11 | min / max : 87154 / 87247 / 87562 / 87903 / 88415 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__regex_strings.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 98651 3 | stdev : 1725 / 1.75% 4 | median : 98046 / 0.47% 5 | min / max : 97680 / 97769 / 98046 / 98718 / 104418 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 92887 / +5.84% / 1.06* 9 | stdev : 122 / 0.13% 10 | median : 92857 / 0.08% 11 | min / max : 92743 / 92809 / 92857 / 92914 / 93227 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__runtime.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 1575 3 | stdev : 32 / 2.04% 4 | median : 1559 / 1.06% 5 | min / max : 1547 / 1553 / 1559 / 1599 / 1653 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 717 / +54.47% / 2.20* 9 | stdev : 7 / 1.01% 10 | median : 715 / 0.69% 11 | min / max : 712 / 712 / 715 / 717 / 737 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__scratchpad.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 219 3 | stdev : 1 / 0.26% 4 | median : 219 / 0.11% 5 | min / max : 219 / 219 / 219 / 220 / 221 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 211 / +3.87% / 1.04* 9 | stdev : 0 / 0.16% 10 | median : 211 / 0.05% 11 | min / max : 211 / 211 / 211 / 211 / 212 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__serde.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 26244 3 | stdev : 70 / 0.27% 4 | median : 26247 / 0.18% 5 | min / max : 26136 / 26197 / 26247 / 26274 / 26375 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 20511 / +21.84% / 1.28* 9 | stdev : 41 / 0.20% 10 | median : 20495 / 0.10% 11 | min / max : 20474 / 20487 / 20495 / 20511 / 20616 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__srfi_1.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 11294 3 | stdev : 23 / 0.20% 4 | median : 11286 / 0.04% 5 | min / max : 11282 / 11285 / 11286 / 11292 / 11368 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 8740 / +22.62% / 1.29* 9 | stdev : 11 / 0.12% 10 | median : 8736 / 0.04% 11 | min / max : 8732 / 8734 / 8736 / 8739 / 8772 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__strings.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 114528 3 | stdev : 696 / 0.61% 4 | median : 114202 / 0.11% 5 | min / max : 114101 / 114163 / 114202 / 114525 / 116564 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 72770 / +36.46% / 1.57* 9 | stdev : 76 / 0.10% 10 | median : 72750 / 0.08% 11 | min / max : 72698 / 72714 / 72750 / 72786 / 72991 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__types.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 27658 3 | stdev : 210 / 0.76% 4 | median : 27589 / 0.14% 5 | min / max : 27552 / 27562 / 27589 / 27615 / 28394 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 8202 / +70.34% / 3.37* 9 | stdev : 10 / 0.12% 10 | median : 8199 / 0.03% 11 | min / max : 8196 / 8197 / 8199 / 8200 / 8230 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__types_negated.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 25873 3 | stdev : 155 / 0.60% 4 | median : 25808 / 0.08% 5 | min / max : 25790 / 25799 / 25808 / 25868 / 26381 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 5460 / +78.90% / 4.74* 9 | stdev : 126 / 2.30% 10 | median : 5422 / 0.07% 11 | min / max : 5416 / 5420 / 5422 / 5440 / 5947 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/_outputs/scheme--benchmark__values.out: -------------------------------------------------------------------------------- 1 | without optimizations: 2 | average : 1295 3 | stdev : 2 / 0.14% 4 | median : 1294 / 0.02% 5 | min / max : 1294 / 1294 / 1294 / 1295 / 1299 6 | mem-leaks : 0 KB 7 | with optimizations: 8 | average : 1309 / -1.08% / 0.99* 9 | stdev : 1 / 0.09% 10 | median : 1308 / 0.02% 11 | min / max : 1308 / 1308 / 1308 / 1309 / 1312 12 | mem-leaks : 0 KB 13 | -------------------------------------------------------------------------------- /tests/low-level-assertions.rs: -------------------------------------------------------------------------------- 1 | 2 | 3 | #![ feature (test) ] 4 | #![ no_implicit_prelude ] 5 | #![ allow (deprecated) ] // FIXME 6 | #![ allow (bare_trait_objects) ] // FIXME 7 | include! ("prelude.in"); 8 | 9 | 10 | 11 | 12 | def_test! (test__0, { 13 | 14 | assert! (0.0f64 == 0.0f64); 15 | assert! (-0.0f64 == 0.0f64); 16 | 17 | assert! (f64::NAN != f64::NAN); 18 | 19 | }); 20 | 21 | -------------------------------------------------------------------------------- /tests/scheme/issues.sst: -------------------------------------------------------------------------------- 1 | 2 | (let ((a 1) (b 2) (c 3)) ((lambda (c) (list a b c)) c)) => '(1 2 3) 3 | 4 | (((lambda (x) (lambda (y) (cons x y))) 1) 2) => '(1 . 2) 5 | 6 | 7 | 8 | 9 | (define t0-s (lambda () t0-s)) => t0-s 10 | (t0-s) => t0-s 11 | 12 | 13 | 14 | 15 | (define t1-l1 16 | (lambda (x) 17 | 18 | ;(lambda (y) (cons x y)) 19 | ;(lambda (y) ((lambda (y) (cons x y)) y)) 20 | 21 | (define l2 (lambda (y) (cons x y))) 22 | (define l3 (lambda (y) (l2 y))) 23 | l3 24 | 25 | )) 26 | => !ignore 27 | 28 | ((t1-l1 1) 2) => '(1 . 2) 29 | 30 | 31 | 32 | 33 | (define t2-l1 34 | (lambda () 35 | (define l2 (lambda () l2)) 36 | l2 37 | )) 38 | => !ignore 39 | 40 | (t2-l1) => !ignore 41 | 42 | -------------------------------------------------------------------------------- /tests/scheme/lists-mutations-2.sst: -------------------------------------------------------------------------------- 1 | 2 | (define (mutate mutator list . rest) 3 | (define mutable-list (~list->mutable list)) 4 | (define output (apply mutator mutable-list rest)) 5 | (values mutable-list output)) 6 | => !ignore 7 | 8 | 9 | 10 | 11 | (mutate set-car! '(1 2) 9) => #values((9 2) 1) 12 | (mutate set-cdr! '(1 2) '(9)) => #values((1 9) (2)) 13 | 14 | 15 | 16 | 17 | (mutate ~list-set-cdr! '(1 2 3 4) 0 '(9)) => #values((1 9) (2 3 4)) 18 | (mutate ~list-set-cdr! '(1 2 3 4) 1 '(9)) => #values((1 2 9) (3 4)) 19 | (mutate ~list-set-cdr! '(1 2 3 4) 2 '(9)) => #values((1 2 3 9) (4)) 20 | (mutate ~list-set-cdr! '(1 2 3 4) 3 '(9)) => #values((1 2 3 4 9) ()) 21 | 22 | -------------------------------------------------------------------------------- /tests/scheme/ports.sst: -------------------------------------------------------------------------------- 1 | 2 | (eof-object? (eof-object)) => #t 3 | 4 | (eof-object? #null) => #f 5 | (eof-object? #void) => #f 6 | (eof-object? #undefined) => #f 7 | (eof-object? #f) => #f 8 | (eof-object? #t) => #f 9 | (eof-object? 0) => #f 10 | (eof-object? "") => #f 11 | (eof-object? '||) => #f 12 | 13 | -------------------------------------------------------------------------------- /tests/scheme/runtime.sst: -------------------------------------------------------------------------------- 1 | 2 | (> (current-second) 1483228800) => #t 3 | (< (current-second) 1893456000) => #t 4 | 5 | (> (current-jiffy) 0) => #t 6 | (> (current-jiffy) 100) => #t 7 | (< (current-jiffy) (* 60 60 1000 1000 1000)) => #t 8 | 9 | (jiffies-per-second) => 1000000000 10 | 11 | -------------------------------------------------------------------------------- /tests/scheme/scratchpad.sst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volution/vonuvoli-scheme/468df001f966934668f0355393c98f3ad2ddee53/tests/scheme/scratchpad.sst -------------------------------------------------------------------------------- /tests/scheme/serde.sst: -------------------------------------------------------------------------------- 1 | 2 | 3 | (define inputs '( 4 | 5 | #null 6 | #void 7 | #undefined 8 | 9 | #true 10 | #false 11 | 12 | -1 0 1 13 | -1.0 0.0 1.0 14 | -1.5 0.5 1.5 15 | 16 | #\a #\b #\c 17 | || |abc| 18 | "" "abc" 19 | #u8"" #u8"abc" 20 | 21 | (#null . #null) 22 | ((1 2 3) . (1 2 3)) 23 | 24 | (#null #t 0 "" (1 2 3)) 25 | #(#null #t 0 "" (1 2 3)) 26 | #values(#null #t 0 "" (1 2 3)) 27 | 28 | )) => !ignore 29 | 30 | 31 | (bytevector? (~serialize-bytevector #t)) => #t 32 | 33 | (map (lambda (input) (~deserialize-bytevector (~serialize-bytevector input))) inputs) => inputs 34 | 35 | --------------------------------------------------------------------------------