Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fizyk20/rust-gmp
gmp bindings for rust
https://github.com/fizyk20/rust-gmp
Last synced: 7 days ago
JSON representation
gmp bindings for rust
- Host: GitHub
- URL: https://github.com/fizyk20/rust-gmp
- Owner: fizyk20
- License: mit
- Fork: true (kimhyunkang/rust-gmp)
- Created: 2015-05-18T14:16:57.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-03-26T18:41:52.000Z (over 3 years ago)
- Last Synced: 2024-10-08T04:23:50.926Z (27 days ago)
- Language: Rust
- Size: 262 KB
- Stars: 41
- Watchers: 8
- Forks: 27
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-rust-cn - fizyk20/rust-gmp - ci.org/fizyk20/rust-gmp.svg?branch=master">](https://travis-ci.org/fizyk20/rust-gmp) (Libraries / Computation)
- awesome-rust - fizyk20/rust-gmp - ci.org/fizyk20/rust-gmp.svg?branch=master">](https://travis-ci.org/fizyk20/rust-gmp) (Libraries / Computation)
- awesome-rust-zh - fizyk20/rust-gmp - libgmp 绑定 [<img src="https://api.travis-ci.org/fizyk20/rust-gmp.svg?branch=master">](https://travis-ci.org/fizyk20/rust-gmp) (库 / 计算)
- awesome-rust - fizyk20/rust-gmp - ci.org/fizyk20/rust-gmp.svg?branch=master">](https://travis-ci.org/fizyk20/rust-gmp) (库 Libraries / 计算 Computation)
README
[![Build Status](https://travis-ci.org/fizyk20/rust-gmp.svg?branch=master)](https://travis-ci.org/fizyk20/rust-gmp)
[Documentation](https://docs.rs/rust-gmp)
The following functions are intentionally left out of the bindings:
* `gmp_randinit` (not thread-safe, obsolete)
* `mpz_random` (not thread-safe, obsolete)
* `mpz_random2` (not thread-safe, obsolete)
* `mpf_set_default_prec` (not thread-safe)
* `mpf_get_default_prec` (not thread-safe)
* `mpf_init` (not thread-safe)
* `mpf_inits` (not thread-safe, va_list wrapper)
* `mpf_clears` (va_list wrapper)
* `mpf_swap` (no better than rust's swap)
* `mpf_set_prec_raw` (could be exposed with an `unsafe` function if needed)
* `mpz_inits` (va_list wrapper)
* `mpz_clears` (va_list wrapper)
* `mpz_swap` (no better than rust's swap)
* `mpq_inits` (va_list wrapper)
* `mpq_clears` (va_list wrapper)
* `mpq_swap` (no better than rust's swap)